-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.27 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
52
53
54
{
"name": "crazyfactory/amazon-selling-partner-api-fulfillment-inbound-api",
"description": "PHP SDK for amazin selling partner fulfillment inbound api",
"authors": [
{
"name": "CrazyFactory",
"email": "[email protected]"
}
],
"keywords": [
"amazon",
"php",
"sdk",
"api",
"spapi",
"selling partner"
],
"license": "proprietary",
"require": {
"php": ">=7.1",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"crazyfactory/sniffs": "^1.3",
"friendsofphp/php-cs-fixer": "~2.12"
},
"autoload": {
"psr-4": {
"CrazyFactory\\SpapiClient\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"CrazyFactory\\SpapiClient\\": "test/"
}
},
"scripts": {
"test": "phpunit -c phpunit.xml.dist",
"test:clover": "phpunit -c phpunit.xml.dist --coverage-clover=coverage/clover.xml.dist",
"test:html": "phpunit -c phpunit.xml.dist --coverage-html=coverage/html",
"lint": "phpcs --standard=phpcs.xml -p",
"lint:fix": "phpcbf --standard=phpcs.xml -p"
},
"repositories": [
{
"type": "composer",
"url": "https://php.fury.io/q_omCXxCokXrnmmFhsod/crazyfactory/"
}
]
}