forked from geocoder-php/Geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.33 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
{
"name": "willdurand/geocoder",
"type": "library",
"description": "The almost missing Geocoder PHP 5.3 library.",
"keywords": ["geocoder", "geocoding", "abstraction", "geoip"],
"homepage": "http://geocoder-php.org",
"license": "MIT",
"authors": [
{
"name": "William Durand",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"kriswallsmith/buzz": "@stable",
"guzzle/guzzle": "@stable",
"zendframework/zend-http": "~2.1",
"geoip/geoip": "~1.13"
},
"suggest": {
"kriswallsmith/buzz": "Enabling Buzz allows you to use the BuzzHttpAdapter.",
"ext-curl": "Enabling the curl extension allows you to use the CurlHttpAdapter.",
"ext-geoip": "Enabling the geoip extension allows you to use the MaxMindProvider.",
"guzzle/guzzle": "Enabling Guzzle allows you to use the GuzzleHttpAdapter.",
"zendframework/zend-http": "Enabling Zend Http allows you to use the ZendHttpAdapter.",
"geoip/geoip": "If you are going to use the MaxMindBinaryProvider (conflict with geoip extension)."
},
"autoload": {
"psr-0": { "Geocoder": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}