-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
38 lines (38 loc) · 1.11 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
{
"name": "aligent/bigcommerce-api-client",
"description": "API client for BigCommerce",
"type": "library",
"require": {
"guzzlehttp/guzzle": "^7.0",
"ext-json": "*",
"php": ">=7.4"
},
"license": "GPL-3.0-only",
"authors": [
{
"name": "Jarrod Swift",
"email": "[email protected]"
},
{
"name": "Matthew Smith",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"BigCommerce\\ApiV3\\": "src/BigCommerce/",
"BigCommerce\\ApiV2\\": "src/BigCommerceLegacyApi/",
"BigCommerce\\Tests\\": "tests/BigCommerce/",
"BigCommerce\\Tests\\V2\\": "tests/BigCommerceLegacyApi/"
}
},
"require-dev": {
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "3.*"
},
"scripts": {
"test": "./vendor/bin/phpunit tests",
"check-style": "./vendor/bin/phpcs --standard=PSR12 -s ./src ./tests",
"fix-style": "./vendor/bin/phpcbf --standard=PSR12 ./src ./tests"
}
}