-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathcomposer.json
44 lines (44 loc) · 1.01 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
{
"name": "arhitector/yandex",
"description": "PHP SDK для работы с некоторыми сервисами яндекса (Яндекс.Диск, Yandex.Disk)",
"keywords": ["yandex", "disk", "диск", "яндекс", "php", "curl", "api", "client", "sdk",
"yandex disk", "яндекс диск", "rest", "restful", "яндекс"
],
"license": "MIT",
"authors": [{
"name": "Dmitry Arhitector",
"email": "[email protected]"
}],
"require": {
"php": "^7.4|^8.0",
"laminas/laminas-diactoros": "^2.17",
"league/event": "^2.2",
"php-http/curl-client": "^2.2",
"php-http/message": "^1.10",
"php-http/client-common": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "^9.4"
},
"autoload": {
"psr-4": {
"Arhitector\\Yandex\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Arhitector\\Yandex\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"config": {
"platform-check": false
}
}