-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
36 lines (36 loc) · 881 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
36
{
"name": "zhuravel/php-iso-3166-1",
"type": "library",
"description": "ISO 3166-1 PHP library",
"keywords": ["ISO 3166", "ISO", "3166", "3166-1", "countries", "library"],
"homepage": "https://github.com/zhooravell/php-iso-3166-1",
"license": "MIT",
"authors": [
{
"name": "Roman Zhuravel",
"email": "zhooravell@gmail.com"
}
],
"require": {
"php": ">=5.6",
"ext-json": "*",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^5.7.11 || ^6.4 || ^7.0"
},
"autoload": {
"files": [
"./src/functions.php",
"./src/constants.php"
],
"psr-4": {
"Iso\\Countries\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Iso\\Countries\\Tests\\": "tests/"
}
}
}