-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 902 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 902 Bytes
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
{
"name": "writecrow/country_code_converter",
"description": "Convert country name to codes or vice-versa.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Mark Fullmer",
"email": "mark.writecrow@gmail.com",
"homepage": "https://markfullmer.com",
"role": "Developer"
}
],
"support": {
"email": "mark.writecrow@gmail.com",
"issues": "https://github.com/writecrow/country_code_converter/issues",
"source": "https://github.com/writecrow/country_code_converter"
},
"autoload": {
"psr-4": { "writecrow\\CountryCodeConverter\\": ["src/", "test/"] }
},
"require-dev": {
"phpunit/phpunit": "~4"
},
"suggest": {
"ext-mbstring": "For best performance",
"symfony/polyfill-mbstring": "If you can't install ext-mbstring"
}
}