forked from geocoder-php/GeocoderLaravel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (38 loc) · 1.01 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
{
"name" : "toin0u/geocoder-laravel",
"description" : "Geocoder Service provider for Laravel 4",
"keywords" : ["laravel", "geocoder", "geocoding"],
"homepage" : "http://geocoder-php.org/",
"license" : "MIT",
"authors" : [{
"name" : "Antoine Corcy",
"email" : "[email protected]",
"homepage" : "http://sbin.dk",
"role" : "Developer"
}],
"require" : {
"php" : ">=5.4",
"illuminate/support" : "~5.1",
"willdurand/geocoder" : "~2.4"
},
"require-dev" : {
"orchestra/testbench" : "~3.0",
"satooshi/php-coveralls" : "~0.6",
"phpunit/phpunit" : "~4.5"
},
"autoload" : {
"psr-4" : {
"Toin0u\\Geocoder\\" : "src/"
}
},
"autoload-dev" : {
"psr-4": {
"Toin0u\\Tests\\Geocoder\\" : "tests/"
}
},
"extra" : {
"branch-alias" : {
"dev-master" : "0.5-dev"
}
}
}