-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
47 lines (47 loc) · 1.03 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
41
42
43
44
45
46
47
{
"name": "gladyshev/yandex-direct-client",
"keywords": ["yandex", "direct", "yandex.direct", "client", "api"],
"description": "Useful Yandex.Direct API v5 client.",
"type": "library",
"license": "UNLICENSE",
"authors": [
{
"name": "Dmitry Gladyshev",
"homepage": "https://github.com/gladyshev"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4|^8.0",
"ext-mbstring": "*",
"ext-json":"*",
"psr/http-client": "1.0.3",
"guzzlehttp/psr7": "1.9.1|2.7.0"
},
"require-dev": {
"phpunit/phpunit": "8.5.41",
"squizlabs/php_codesniffer": "3.5.8",
"vimeo/psalm": "3.18.2",
"guzzlehttp/guzzle": "7.9.0",
"psr/log": "1.1"
},
"autoload": {
"psr-4": {
"Gladyshev\\Yandex\\Direct\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Gladyshev\\Yandex\\Direct\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"cs-check": "phpcs",
"cs-fix": "phpcbf"
}
}