forked from geocoder-php/Geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.25 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
{
"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": "william.durand1@gmail.com"
}
],
"repositories": [
{
"type": "composer",
"url": "http://packages.zendframework.com/"
}
],
"require": {
"php": ">=5.3.0"
},
"require-dev": {
"kriswallsmith/buzz": "*",
"guzzle/guzzle": "*",
"zendframework/zend-http": "*"
},
"suggest": {
"kriswallsmith/buzz": "Enabling Buzz allows you to use the BuzzHttpAdapter, it's the recommended HTTP layer.",
"ext-curl": "Enabling the curl extension allows you to use CurlHttpAdapter.",
"guzzle/guzzle": "Enabling Guzzle allows you to use the GuzzleHttpAdapter.",
"zendframework/zend-http": "Enabling Zend_Http allows you to use the ZendHttpAdapter"
},
"autoload": {
"psr-0": { "Geocoder": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}