forked from fahiem152/filament-pinpoint
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.72 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.72 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "fahiem/filament-pinpoint",
"description": "Google Maps location picker component for Filament 4 with search, draggable marker, and reverse geocoding",
"keywords": [
"laravel",
"filament",
"google-maps",
"location-picker",
"maps",
"geocoding",
"filament-4",
"pinpoint"
],
"homepage": "https://github.com/fahiem152/filament-pinpoint",
"license": "MIT",
"authors": [
{
"name": "Fahiem",
"email": "amfahiem010502@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"filament/filament": "^4.0",
"spatie/laravel-package-tools": "^1.16"
},
"require-dev": {
"orchestra/testbench": "^9.0",
"pestphp/pest": "^2.0"
},
"autoload": {
"psr-4": {
"Fahiem\\FilamentPinpoint\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fahiem\\FilamentPinpoint\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Fahiem\\FilamentPinpoint\\FilamentPinpointServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"@php -r \"echo PHP_EOL . '⭐ Love Filament Pinpoint? Please give it a star: https://github.com/fahiem152/filament-pinpoint' . PHP_EOL . PHP_EOL;\""
],
"post-update-cmd": [
"@php -r \"echo PHP_EOL . '⭐ Love Filament Pinpoint? Please give it a star: https://github.com/fahiem152/filament-pinpoint' . PHP_EOL . PHP_EOL;\""
]
},
"minimum-stability": "dev",
"prefer-stable": true
}