-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
39 lines (39 loc) · 1.02 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
{
"name": "alcohol/iso3166",
"description": "ISO 3166-1 PHP Library",
"keywords": ["ISO 3166", "ISO", "3166", "3166-1", "countries", "library"],
"homepage": "http://alcohol.github.io/iso3166/",
"license": "MIT",
"authors": [{
"name": "Rob Bast",
"email": "rob.bast@gmail.com"
}],
"support": {
"issues": "https://github.com/alcohol/iso3166/issues",
"source": "https://github.com/alcohol/iso3166"
},
"require": {
"php": "~5.3"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpunit/php-invoker": "@stable",
"squizlabs/php_codesniffer": "~2.0"
},
"autoload": {
"psr-4": {
"Alcohol\\Tests\\": ".",
"Alcohol\\": "."
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
},
"scripts": {
"checkstyle": "vendor/bin/phpcs --standard=psr2 *.php",
"clean": "git clean -ffxdi",
"test": "vendor/bin/phpunit"
}
}