-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
58 lines (58 loc) · 2.06 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
51
52
53
54
55
56
57
58
{
"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-json": "*"
},
"require-dev": {
"ext-gettext": "*",
"sokil/php-isocodes-db-i18n": "^4.0.0",
"phpunit/phpunit": ">=7.5.20",
"php-coveralls/php-coveralls": "^2.1",
"squizlabs/php_codesniffer": "^3.4",
"phpmd/phpmd" : "@stable",
"symfony/translation": "^4.4.17|^5.2",
"vimeo/psalm": "^4.3",
"infection/infection": ">=0.11.5"
},
"autoload": {
"psr-4": {
"Sokil\\IsoCodes\\": ["src/"]
}
},
"autoload-dev": {
"psr-4": {
"Sokil\\IsoCodes\\": ["tests/", "benchmarks/"]
}
},
"suggest": {
"sokil/php-isocodes-db-only": "If frequent database updates is not necessary, and only database without localization is required.",
"sokil/php-isocodes-db-i18n": "If frequent database updates is not necessary, and database with localization is required.",
"ext-gettext": "Required for gettext translation driver",
"symfony/translation": "Translation driver by Symfont project",
"phpbench/phpbench": "Required to run 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": "phpbench run benchmarks/ --report=default",
"infection": "infection --min-msi=82 --min-covered-msi=91 --log-verbosity=default",
"psalm": "./vendor/bin/psalm"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true
}
}
}