-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 977 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
39
{
"name": "ua-opendata/bank-bin",
"description": "Ukranian Banks BIN database",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^9.2",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "^0.12.32"
},
"license": "MIT",
"authors": [
{
"name": "Alexander",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "7.* | 8.*",
"ext-json": "*"
},
"scripts": {
"lint": "phpcs --standard=PSR2 ./src ./tests",
"phpcbf": "phpcbf --standard=PSR2 ./src ./tests",
"cover": "phpunit --coverage-clover=coverage.xml",
"test": "phpunit --coverage-text",
"analyse": "phpstan analyse"
},
"autoload": {
"psr-4": {
"UaOpenData\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"UaOpenData\\Tests\\": "tests/"
}
}
}