-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
39 lines (39 loc) · 879 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
{
"name": "highsidelabs/amazon-business-api",
"version": "1.3.0",
"description": "PHP client for Amazon's Business API",
"keywords": [
"api",
"amazon-business-api",
"amazon",
"ecommerce",
"ab-api",
"sdk",
"rest",
"api"
],
"license": "BSD-3-Clause",
"type": "library",
"authors": [
{
"name": "Highside Labs",
"homepage": "https://highsidelabs.co"
}
],
"require": {
"php": ">=7.3",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^6.0|^7.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4"
},
"autoload": {
"psr-4": { "AmazonBusinessApi\\" : "lib/" }
},
"scripts": {
"lint": "vendor/bin/php-cs-fixer fix"
}
}