forked from geocoder-php/Geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.11 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
{
"name": "willdurand/geocoder",
"type": "library",
"description": "The almost missing Geocoder PHP 5.4 library.",
"keywords": ["geocoder", "geocoding", "abstraction", "geoip"],
"homepage": "http://geocoder-php.org",
"license": "MIT",
"authors": [
{
"name": "William Durand",
"email": "william.durand1@gmail.com"
}
],
"require": {
"php": ">=5.4.0",
"egeloen/http-adapter": "~0.1",
"igorw/get-in": "~1.0"
},
"require-dev": {
"geoip2/geoip2": "~0.6",
"symfony/stopwatch": "~2.5"
},
"suggest": {
"ext-geoip": "Enabling the geoip extension allows you to use the MaxMindProvider.",
"geoip/geoip": "If you are going to use the MaxMindBinaryProvider (conflict with geoip extension).",
"geoip2/geoip2": "If you are going to use the GeoIP2DatabaseProvider.",
"symfony/stopwatch": "If you want to use the TimedGeocoder"
},
"autoload": {
"psr-0": { "Geocoder": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}