forked from shoppingflux/php-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.02 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
{
"name": "shoppingfeed/php-sdk",
"license": "Apache-2.0",
"minimum-stability": "stable",
"description": "Shopping Feed SDK to ease integration of our API",
"require": {
"php": ">= 5.6",
"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",
"phpunit/phpunit": "^5.0",
"shoppingfeed/coding-style-php": "^2.0",
"overtrue/phplint": "^1.1"
},
"scripts": {
"test": [
"@php vendor/bin/phpunit",
"@php vendor/bin/sfcs src --progress -vvv"
]
},
"scripts-descriptions": {
"test" : "Run PHPUnit tests suites and Coding standards validator"
}
}