forked from jlevers/selling-partner-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
73 lines (73 loc) · 2.08 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "jlevers/selling-partner-api",
"description": "PHP client for Amazon's Selling Partner API",
"keywords": [
"api",
"selling-partner-api",
"amazon",
"ecommerce",
"sp-api",
"sdk",
"rest",
"api"
],
"license": "BSD-3-Clause",
"type": "library",
"authors": [
{
"name": "Jesse Evers",
"homepage": "https://jesseevers.com"
}
],
"require": {
"php": ">=8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"guzzlehttp/guzzle": "^6.0|^7.0",
"saloonphp/saloon": "^3.4",
"openspout/openspout": "^4.23",
"illuminate/support": "^11.5"
},
"require-dev": {
"composer/semver": "^3.4",
"highsidelabs/saloon-sdk-generator": "^2.1.0",
"symfony/console": "^7.0",
"psy/psysh": "^0.12.0",
"voku/simple_html_dom": "^4.8",
"laravel/pint": "^1.13",
"phpcompatibility/php-compatibility": "dev-develop",
"phpunit/phpunit": "^11.2",
"fakerphp/faker": "^1.23"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"SellingPartnerApi\\": "src/"
},
"files": [
"src/Generator/constants.php"
]
},
"autoload-dev": {
"psr-4": {
"SellingPartnerApi\\Tests\\": "test/"
}
},
"scripts": {
"lint": [
"@pint",
"@php-compatibility-check"
],
"pint": "php vendor/bin/pint",
"php-compatibility-check": "./vendor/bin/phpcs -p ./src ./bin --standard=PHPCompatibility --runtime-set testVersion 8.2-",
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"test": "vendor/bin/phpunit"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}