forked from alcohol/iso3166
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 987 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
{
"name": "league/iso3166",
"description": "ISO 3166-1 PHP Library",
"autoload": {
"psr-4": { "League\\ISO3166\\": "src" }
},
"autoload-dev": {
"psr-4": { "League\\ISO3166\\": "tests" }
},
"require": {
"php": "^7.3|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"scripts": {
"cs-review": "php-cs-fixer fix --verbose --diff --dry-run",
"cs-fix": "php-cs-fixer fix --verbose",
"test": "phpunit"
},
"extra": {
"branch-alias": { "dev-master": "3.x-dev" }
},
"keywords": ["ISO 3166", "ISO", "3166", "3166-1", "countries", "library"],
"homepage": "https://github.com/thephpleague/iso3166",
"license": "MIT",
"authors": [{
"name": "Rob Bast",
"email": "[email protected]"
}],
"support": {
"issues": "https://github.com/thephpleague/iso3166/issues",
"source": "https://github.com/thephpleague/iso3166"
}
}