forked from sima-land/api-php-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 827 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
{
"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": "dev",
"license": "MIT",
"authors": [
{
"name": "Evgeny Gavrilov",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4",
"guzzlehttp/guzzle": "~6",
"monolog/monolog": "~1"
},
"require-dev": {
"phpunit/phpunit": "~4",
"scrutinizer/ocular": "~1"
},
"autoload": {
"psr-4": {
"SimaLand\\API\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SimaLand\\API\\Tests\\": "tests"
}
}
}