-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
38 lines (38 loc) · 856 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
35
36
37
38
{
"name": "kstkn/dadata",
"description": "Dadata API client (https://dadata.ru)",
"minimum-stability": "stable",
"license": "MIT",
"support": {
"issues": "https://github.com/kstkn/dadata/issues",
"source": "https://github.com/kstkn/dadata"
},
"authors": [
{
"name": "Sergey Kasatkin",
"email": "spam@onsky.ru"
},
{
"name": "Vitaly Grechkin",
"email": "vitaly.grechkin@gmail.com"
}
],
"require": {
"php": ">=7.1",
"ext-json": "*",
"doctrine/inflector": "^1.2",
"doctrine/collections": "^1.4",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7",
"zendframework/zend-diactoros": "^2.0"
},
"autoload": {
"psr-4": {
"Gietos\\Dadata\\": "src/",
"Gietos\\Dadata\\Tests\\": "tests/"
}
}
}