-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
43 lines (43 loc) · 1.13 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
{
"name": "sitkoru/yandex-direct-api",
"description": "Client for Yandex.Direct API v5",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "George Drak",
"email": "sonicgd@gmail.com"
}
],
"require": {
"php": "7.4.* || ^8.0",
"ext-json": "*",
"symfony/validator": "^4.3 || ^5.0",
"doctrine/annotations": "^1.7",
"doctrine/cache": "^1.8 || ^2.2",
"netresearch/jsonmapper": "^3.0.0",
"guzzlehttp/guzzle": "^6.5 || ^7.2",
"psr/log": "^1.1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpstan/phpstan": "^0.12.27",
"phpstan/phpstan-strict-rules": "^0.12.2",
"thecodingmachine/phpstan-strict-rules": "^0.12.0",
"phpunit/phpunit": "^9.3",
"phpstan/phpstan-symfony": "^0.12.6",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan-doctrine": "^0.12.14",
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
"psr-4": {
"directapi\\": "src"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}