-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
46 lines (46 loc) · 980 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
42
43
44
45
46
{
"name": "gladyshev/yandex-direct-client",
"keywords": ["yandex", "direct", "yandex.direct", "client", "api"],
"description": "Useful Yandex.Direct API client.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Dmitry Gladyshev",
"email": "[email protected]",
"homepage": "https://github.com/gladyshev"
}
],
"minimum-stability": "stable",
"require": {
"php": "^5.6||^7.0",
"ext-libxml": "*",
"psr/log": "~1.0",
"guzzlehttp/guzzle": "~6.2",
"openlss/lib-array2xml": "~0.5"
},
"require-dev": {
"phpunit/phpunit": "~5.7|~6.0",
"squizlabs/php_codesniffer": "^2.3"
},
"autoload": {
"psr-4": {
"Yandex\\Direct\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yandex\\Direct\\Test\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1-dev"
}
},
"scripts": {
"test": "phpunit",
"cs-check": "phpcs",
"cs-fix": "phpcbf"
}
}