forked from drunomics/php-paapi5-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
51 lines (51 loc) · 1.97 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
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "drunomics/paapi5-php-sdk",
"version": "1.1.2",
"description": "Copy of ProductAdvertisingAPI 5.0 PHP SDK version 2020",
"keywords": [
"amazon",
"pa-api",
"paapi",
"paapi5.0",
"paapi5",
"paapi5-php-sdk",
"getitems",
"searchitems",
"getvariations",
"getbrowsenodes",
"ProductAdvertisingAPI"
],
"homepage": "https://webservices.amazon.com/paapi5/documentation/index.html",
"license": "Apache-2.0",
"authors": [
{
"name" : "Product Advertising API Team",
"homepage": "https://webservices.amazon.com/paapi5/documentation/index.html"
}
],
"require": {
"php": ">=5.5",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^6.2 || ^7.0",
"guzzlehttp/psr7": "^1.8.2"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "~2.6",
"friendsofphp/php-cs-fixer": "~2.12"
},
"scripts": {
"test": "vendor/bin/phpunit",
"phpcs": "vendor/bin/phpcs --standard=phpcs.xml -n SampleGetItemsApi.php SampleSearchItemsApi.php SampleGetVariationsApi.php SampleGetBrowseNodesApi.php src/com/amazon/paapi5/v1/auth/SignHelper.php",
"phpcbf": "vendor/bin/phpcbf --standard=phpcs.xml -n SampleGetItemsApi.php SampleSearchItemsApi.php SampleGetVariationsApi.php SampleGetBrowseNodesApi.php src/com/amazon/paapi5/v1/auth/SignHelper.php",
"php-cs-fixer": "vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix --allow-risky=yes --using-cache=no --config=.php_cs SampleGetItemsApi.php SampleSearchItemsApi.php SampleGetVariationsApi.php SampleGetBrowseNodesApi.php src/com/amazon/paapi5/v1/auth/SignHelper.php"
},
"autoload": {
"psr-4": { "Amazon\\ProductAdvertisingAPI\\v1\\" : "src/" }
},
"autoload-dev": {
"psr-4": { "Amazon\\ProductAdvertisingAPI\\v1\\" : "test/" }
}
}