-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathcomposer.json
47 lines (47 loc) · 1.21 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
43
44
45
46
47
{
"name": "petercoles/multilingual-country-list",
"type": "library",
"description": "Lookup Objects for ISO 3166 Country Names and Codes",
"keywords": [
"country lists",
"country lookup",
"country codes",
"ISO 3166",
"laravel"
],
"homepage": "https://github.com/petercoles/multilingualcountry-list",
"license": "MIT",
"authors": [
{
"name": "Peter Coles",
"email": "[email protected]",
"homepage": "https://petercoles.com"
}
],
"support": {
"issues": "https://github.com/petercoles/multilingual-country-list/issues"
},
"require": {
"php": ">=7.4",
"illuminate/support": "~5|~6|~7|~8|~9|~10|~11"
},
"require-dev": {
"phpunit/phpunit": ">=9 <10",
"mockery/mockery": "^1"
},
"autoload": {
"psr-4": {
"PeterColes\\Countries\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"PeterColes\\Countries\\CountriesServiceProvider"
],
"aliases": {
"Countries": "PeterColes\\Countries\\CountriesFacade"
}
}
}
}