forked from geocoder-php/Geocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
29 lines (29 loc) · 827 Bytes
/
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
{
"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"
},
"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."
},
"autoload": {
"psr-0": { "Geocoder": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}