forked from shoppingflux/php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.14 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
{
"name": "shoppingfeed/php-sdk",
"license": "Apache-2.0",
"minimum-stability": "stable",
"description": "Shopping Feed SDK to ease integration of our API",
"require": {
"php": ">=7.1",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"ShoppingFeed\\Sdk\\": "src/",
"ShoppingFeed\\Sdk\\Test\\": "tests/unit"
}
},
"suggest": {
"psr/log": "trace HTTP requests performed by the SDK",
"guzzlehttp/guzzle": "Guzzle Http 6 is the default http adapter integrated in the SDK",
"shoppingfeed/php-feed-generator": "Generates compliant Shopping-Feed XML feed with ease"
},
"require-dev": {
"monolog/monolog": "^1.23",
"guzzlehttp/guzzle": "^6.0 | ^7.0",
"phpunit/phpunit": "^7.0 | ^9.0",
"shoppingfeed/coding-style-php": "~2.1.0",
"overtrue/phplint": "^1.1"
},
"scripts": {
"test": [
"@tests-unit",
"@phpcs"
],
"tests-unit": "vendor/bin/phpunit",
"phpcs": "vendor/bin/sfcs src --progress -vvv",
"phpcsfix": "vendor/bin/sfcs src --progress -vvv --autofix"
},
"scripts-descriptions": {
"test" : "Run PHPUnit tests suites and Coding standards validator"
}
}