forked from cloudblue/connect-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 779 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 779 Bytes
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
{
"name": "apsconnect/connect-sdk",
"type": "library",
"description": "APS Connect QuickStart SDK",
"license": "Apache-2.0",
"require": {
"php": ">=5.6.0",
"ext-curl": "*",
"ext-json": "*",
"doctrine/inflector": "^1.1.0",
"psr/container": "^1.0.0",
"psr/log": "^1.0.0",
"pimple/pimple": "^3.0",
"guzzlehttp/guzzle": "~6.0 | ~7.0",
"phpoffice/phpspreadsheet": "^1.6",
"lukascivil/treewalker": "^0.9"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"mockery/mockery": "^1.0"
},
"autoload": {
"psr-4": {
"Connect\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
}
}