forked from finalbytes/google-distance-matrix-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 829 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
{
"name": "finalbytes/google-distance-matrix-api",
"type": "library",
"description": "Google distance matrix API - Estimate travel time and distance for multiple destinations.",
"keywords": [
"google distance matrix",
"distance matrix",
"google api"
],
"license": "MIT",
"authors": [{
"name": "Kevin Kersjens",
"homepage": "https://finalbytes.nl",
"email": "[email protected]"
}],
"support": {
"email": "[email protected]",
"issues": "https://github.com/finalbytes/google-distance-matrix-api/issues"
},
"version": "v0.0.1",
"require": {
"php": ">=7.0",
"guzzlehttp/guzzle": "^6.2"
},
"autoload": {
"psr-4": {
"FinalBytes\\GoogleDistanceMatrix\\": "src/"
}
}
}