forked from hflabs/dadata-php
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
50 lines (50 loc) · 1.16 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
45
46
47
48
49
50
{
"name": "magdv/dadata",
"type": "library",
"description": "Data cleansing, enrichment and suggestions via Dadata API",
"homepage": "https://github.com/magdv/dadata",
"license": "MIT",
"authors": [
{
"name": "Korolev Denis",
"email": "d.korolev@magdv.com"
}
],
"keywords": [
"dadata",
"suggestions",
"api",
"php"
],
"require": {
"php": ">=7.4",
"psr/http-client": "^1.0",
"nyholm/psr7": "^1.5"
},
"require-dev": {
"rector/rector": "^0.15.17",
"ext-json": "*",
"overtrue/phplint": "^2.0",
"phpunit/phpunit": "^8.5",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^3.8",
"guzzlehttp/guzzle": "^7.5"
},
"autoload": {
"psr-4": {
"MagDv\\Dadata\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MagDv\\Dadata\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "phplint",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"psalm": "psalm",
"test": "phpunit --colors=always"
}
}