-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
composer.json
42 lines (42 loc) · 1.25 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
{
"name": "league/iso3166",
"description": "ISO 3166-1 PHP Library",
"keywords": ["ISO 3166", "ISO", "3166", "3166-1", "countries", "library"],
"homepage": "https://github.com/alcohol/iso3166",
"license": "MIT",
"authors": [{
"name": "Rob Bast",
"email": "[email protected]"
}],
"support": {
"issues": "https://github.com/alcohol/iso3166/issues",
"source": "https://github.com/alcohol/iso3166"
},
"require": {
"php": "^7.4 || ^8.0",
"ext-mbstring": "*"
},
"autoload": {
"psr-4": { "League\\ISO3166\\": "src" }
},
"require-dev": {
"phpunit/phpunit": "^9.6.21",
"phpstan/phpstan": "^1.12.6",
"phpstan/phpstan-deprecation-rules": "^1.2.1",
"phpstan/phpstan-strict-rules": "^1.6.1"
},
"autoload-dev": {
"psr-4": { "League\\ISO3166\\": "tests" }
},
"scripts": {
"test": "vendor/bin/phpunit",
"phpstan": "vendor/bin/phpstan",
"php-cs-fixer": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix --dry-run --diff",
"php-cs-fixer-fix": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix"
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
}
}