-
Notifications
You must be signed in to change notification settings - Fork 24
/
composer.json
42 lines (42 loc) · 903 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "teamtnt/php-stripe-webhook-tester",
"description": "A PHP package for testing Stripe Webhooks localy",
"keywords": [
"teamtnt",
"php-stripe-webhook-tester"
],
"homepage": "https://github.com/teamtnt/php-stripe-webhook-tester",
"license": "MIT",
"authors": [
{
"name": "Nenad Ticaric",
"email": "[email protected]",
"homepage": "http://www.tntstudio.us",
"role": "Developer"
},
{
"name": "Sasa Tokic",
"email": "[email protected]",
"homepage": "http://www.tntstudio.us",
"role": "Developer"
}
],
"require": {
"php": ">=5.5.0",
"guzzlehttp/guzzle": "^6.1"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"scrutinizer/ocular": "~1.1"
},
"autoload": {
"psr-4": {
"TeamTNT\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TeamTNT\\Test\\": "tests"
}
}
}