forked from ZaiusInc/zaius-php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 841 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
{
"name": "zaius/zaius-php-sdk",
"description": "The Zaius SDK for PHP. Validated for use in zaius-magento-2, users in custom environments are encouraged to test and validate thoroughly (and note any issues via the GitHub issue tracker).",
"keywords": [],
"type": "library",
"version": "1.0.2",
"license": "MIT",
"authors": [
{
"name": "Trellis",
"homepage": "https://trellis.co"
}
],
"support": {
"issues": "https://github.com/ZaiusInc/zaius-php-sdk/issues"
},
"require": {
"php": ">=5.5",
"aws/aws-sdk-php": "^3.85",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "~4.0"
},
"suggest": {},
"autoload": {
"psr-4": {
"ZaiusSDK\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZaiusSDK\\Test\\": "tests/"
}
}
}