-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 836 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 836 Bytes
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
{
"name": "sima-land/api-php-client",
"type": "library",
"description": "Client library for Simaland APIs",
"keywords": ["simaland", "api", "php", "client"],
"homepage": "https://github.com/sima-land/api-php-client",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Evgeny Gavrilov",
"email": "e.r.gavrilov@gmail.com"
}
],
"require": {
"php": ">=7.3",
"guzzlehttp/guzzle": "~7.4",
"monolog/monolog": "~2.7"
},
"require-dev": {
"phpunit/phpunit": "~9.5",
"scrutinizer/ocular": "~1"
},
"autoload": {
"psr-4": {
"SimaLand\\API\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SimaLand\\API\\Tests\\": "tests"
}
}
}