-
Notifications
You must be signed in to change notification settings - Fork 65
/
composer.json
38 lines (37 loc) · 1.1 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
{
"name": "igaster/laravel_cities",
"description": "Seed all countries/cities from geonames.org database. Searchable DB tree, ready to use API & a bonus vue.js component!",
"keywords": ["laravel", "geonames.org", "geolocation", "countries", "cities"],
"license": "MIT",
"homepage": "https://github.com/igaster/laravel_cities.git",
"authors": [
{
"name": "Giannis Gasteratos",
"email": "igasteratos@gmail.com"
}
],
"require": {
"laravel/framework": ">=5.0"
},
"require-dev": {
"orchestra/testbench": "^4.0|^5.0",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4" : {
"Igaster\\LaravelCities\\" : "src/",
"Igaster\\LaravelCities\\Tests\\" : "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.2-dev"
},
"laravel": {
"providers": [
"Igaster\\LaravelCities\\GeoServiceProvider"
]
}
},
"minimum-stability": "stable"
}