forked from ipalaus/geonames
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 970 Bytes
/
composer.json
File metadata and controls
47 lines (47 loc) · 970 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "ipalaus/geonames",
"description": "A collection of models and commands to get all the power of GeoNames in Eloquent ORM.",
"keywords": [
"geonames",
"location",
"eloquent",
"laravel"
],
"license": "MIT",
"authors": [
{
"name": "Isern Palaus",
"email": "ipalaus@ipalaus.com"
}
],
"require": {
"php": ">=5.6.4",
"ext-zip": "*",
"illuminate/config": "~5.5",
"illuminate/console": "~5.5",
"illuminate/database": "~5.5",
"illuminate/filesystem": "~5.5",
"illuminate/support": "~5.5",
"symfony/process": "~3.3"
},
"require-dev": {
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~5.0"
},
"autoload": {
"classmap": [
"src/migrations"
],
"psr-4": {
"Ipalaus\\Geonames\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Ipalaus\\Geonames\\GeonamesServiceProvider"
]
}
},
"minimum-stability": "dev"
}