-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 780 Bytes
/
Copy pathcomposer.json
File metadata and controls
31 lines (31 loc) · 780 Bytes
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
{
"name": "avcodewizard/google-place-api",
"description": "A Laravel package for Google Places API integration",
"keywords": ["laravel", "google", "places", "api", "location"],
"type": "library",
"license": "MIT",
"version": "1.0.2",
"autoload": {
"psr-4": {
"Avcodewizard\\GooglePlaceApi\\": "src/"
}
},
"authors": [
{
"name": "Ankit Verma",
"email": "ankitv4087@gmail.com"
}
],
"require": {
"php": "^7.3|^8.0",
"guzzlehttp/guzzle": "^7.0"
},
"extra": {
"laravel": {
"providers": [
"Avcodewizard\\GooglePlaceApi\\GooglePlaceApiServiceProvider"
]
}
},
"minimum-stability": "dev"
}