forked from VladimirVKHS/yandex-market-php-partner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 977 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
39
40
41
{
"name": "yandex-market/yandex-market-php-partner",
"description": "Yandex PHP Market Partners library.",
"keywords":["yandex","sdk", "market"],
"type":"library",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable" : true,
"require": {
"php": ">=5.6",
"ext-curl": "*",
"ext-json": "*",
"yandex-market/yandex-market-php-common": "^1.2.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"php-coveralls/php-coveralls": "^2.0",
"phpunit/phpunit": "5.7.6"
},
"authors": [
{
"name": "Kirill Litvinov",
"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"
},
"repositories": [
{
"type": "composer",
"url": "https://pkg.kilylabs.com"
}
]
}