forked from moltin/php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1 KB
/
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
{
"name": "moltin/php-sdk",
"description": "The Moltin PHP SDK is a simple to use interface for the API to help you get off the ground quickly and efficiently",
"authors": [
{
"name": "moltin",
"email": "[email protected]",
"homepage": "https://www.moltin.com",
"role": "Vendor"
}
],
"support": {
"email": "[email protected]",
"issues": "http://github.com/moltin/php-sdk/issues",
"source": "http://github.com/moltin/php-sdk"
},
"minimum-stability": "dev",
"require": {
"php": ">=5.5.0",
"guzzlehttp/guzzle": "~6.0"
},
"require-dev": {
"phpunit/phpunit": "^4.0",
"vlucas/phpdotenv": "^2.4.0",
"pear/console_table": "^1.3.0",
"mockery/mockery": "dev-master"
},
"autoload": {
"psr-4": {
"Moltin\\": "src/"
}
},
"autoload-dev" : {
"psr-4": {
"Moltin\\SDK\\Tests\\" : "tests/"
}
}
}