forked from sokil/php-isocodes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.47 KB
/
Copy pathcomposer.json
File metadata and controls
46 lines (46 loc) · 1.47 KB
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
{
"name": "sokil/php-isocodes",
"license" : "MIT",
"description": "ISO country, subdivision, language, currency and script definitions and their translations. Based on pythons pycountry and Debian's iso-codes.",
"authors": [
{
"name": "Dmytro Sokil",
"email": "dmytro.sokil@gmail.com"
}
],
"require": {
"php": ">=7.1",
"ext-gettext": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"php-coveralls/php-coveralls": "^2.1",
"squizlabs/php_codesniffer": "^3.4",
"phpmd/phpmd" : "@stable",
"phpbench/phpbench": "^0.16.9",
"dealerdirect/phpcodesniffer-composer-installer": "^0.5.0",
"slevomat/coding-standard": "^5.0"
},
"autoload": {
"psr-4": {
"Sokil\\IsoCodes\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"Sokil\\IsoCodes\\": ["tests/", "benchmarks/"]
}
},
"scripts": {
"test": "./vendor/bin/phpunit",
"cover": "./vendor/bin/phpunit --coverage-clover ./build/logs/clover.xml",
"coveralls": "./vendor/bin/php-coveralls -v",
"check-style": "./vendor/bin/phpcs",
"fix-style": "./vendor/bin/phpcbf",
"bench": "./vendor/bin/phpbench run benchmarks/ --report=default",
"infection": "infection",
"release": "./bin/release.sh",
"update_iso_codes_db": "./bin/update_iso_codes_db.sh"
}
}