-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
38 lines (38 loc) · 892 Bytes
/
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": "gwinn/yandex-market",
"description": "PHP library for Yandex.Market API",
"keywords":["yandex","sdk", "market"],
"type":"library",
"license": "MIT",
"minimum-stability": "dev",
"require": {
"php": ">=5.6",
"ext-curl": "*",
"ext-json": "*",
"azgalot/yandex-market-common-php": "1.*.*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"php-coveralls/php-coveralls": "^2.0",
"phpunit/phpunit": "5.7.6"
},
"authors": [
{
"name": "Vitaliia Smahlenko",
"email": "[email protected]"
},
{
"name": "Alex Lushpai",
"email": "[email protected]"
}
],
"autoload": {
"psr-0": {
"Yandex": "src/",
"Yandex\\Tests": "tests/"
}
},
"scripts": {
"test" : "php vendor/bin/phpunit --configuration tests/phpunit.xml.dist --coverage-clover=.reports/clover.xml"
}
}