-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
32 lines (32 loc) · 961 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
30
31
32
{
"name": "alexsawallich/zend-google-geocoder",
"description": "A Zend-Framework-Module providing a small service-class to query the Google Geocoder API. Results can optionally be cached to avoid running into the API's query limitations.",
"type": "library",
"keywords": ["google", "geocoder", "api", "zend", "module", "zf"],
"homepage": "http://www.alex-sawallich.com",
"authors": [
{
"name": "Alex Sawallich",
"email": "[email protected]",
"homepage": "http://www.alex-sawallich.com",
"role": "developer"
}
],
"support": {
"wiki": "https://github.com/alexsawallich/ZendGoogleGeocoder/wiki",
"issues": "https://github.com/alexsawallich/ZendGoogleGeocoder/issues",
"source": "https://github.com/alexsawallich/ZendGoogleGeocoder"
},
"require": {
"php": ">=5.5"
},
"autoload": {
"psr-4": {
"ZendGoogleGeocoder\\": "src/"
},
"classmap": [
"",
"src/"
]
}
}