-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathcomposer.json
27 lines (27 loc) · 947 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
{
"name": "anthonymartin/geo-location",
"type": "class",
"description": "Powerful GeoCoding library: Retrieve bounding box coordinates, distances between geopoints, point in polygon, get longitude and latitude from addresses and more with GeoLocation for PHP",
"keywords": ["geolocation","geocoding", "bounding coordinates", "bounding box coordinates", "distances", "geocode", "latitude", "longitude", "point in polygon"],
"homepage": "https://github.com/anthonymartin/GeoLocation-PHP",
"license": "MIT",
"authors": [
{
"name": "Anthony Martin",
"email": "anthony@replaycreative.com",
"homepage": "http://replaycreative.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0"
},
"autoload": {
"psr-0": {
"AnthonyMartin": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^7"
}
}