forked from pnlinh/laravel-google-distance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·44 lines (44 loc) · 864 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
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "pnlinh/laravel-google-distance",
"type": "library",
"description": "Caculate Google Distance Matrix API in Laravel",
"license": "MIT",
"authors": [
{
"name": "Pham Ngoc Linh",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"laravel/framework": "~5.7.0",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^7.0"
},
"autoload": {
"psr-4": {
"Pnlinh\\GoogleDistance\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Pnlinh\\GoogleDistance\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Pnlinh\\GoogleDistance\\Providers\\GoogleDistanceServiceProvider"
]
}
}
}