-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
31 lines (31 loc) · 915 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
{
"name": "sadiq/filament-gmap-location-picker",
"description": "A Filament field to enter and update latitude longitude based on map selection",
"license": "MIT",
"homepage": "https://github.com/s-sadiq/filament-gmap-location-picker",
"support": {
"issues": "https://github.com/s-sadiq/filament-gmap-location-picker/issues",
"source": "https://github.com/s-sadiq/filament-gmap-location-picker"
},
"require": {
"php": "^7.4|^8.0",
"filament/filament": "^1.6"
},
"autoload": {
"psr-4": {
"Sadiq\\GMapLocationPicker\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Sadiq\\GMapLocationPicker\\GmapLocationPickerServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}