-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.13 KB
/
Copy pathcomposer.json
File metadata and controls
52 lines (52 loc) · 1.13 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
{
"name": "maycolmunoz/moon-leaflet",
"description": "Leaflet field and component for MoonShine",
"keywords": [
"moonshine",
"leaflet",
"map"
],
"type": "library",
"version": "1.0",
"license": "MIT",
"support": {
"issues": "https://github.com/maycolmunoz/moon-leaflet/issues",
"source": "https://github.com/maycolmunoz/moon-leaflet"
},
"authors": [
{
"name": "Maycol Muñoz",
"email": "estivenyeizon@gmail.com"
}
],
"require": {
"php": "^8.1",
"moonshine/moonshine": "^3.0 || ^4.0"
},
"require-dev": {
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0",
"orchestra/testbench": "^8.0"
},
"autoload": {
"psr-4": {
"MaycolMunoz\\MoonLeaflet\\": "src/",
"MaycolMunoz\\MoonLeaflet\\Tests\\": "tests/",
"MaycolMunoz\\MoonLeaflet\\Database\\Factories\\": "database/factories/",
"MaycolMunoz\\MoonLeaflet\\Database\\Seeders\\": "database/seeders/"
}
},
"minimum-stability": "stable",
"extra": {
"laravel": {
"providers": [
"MaycolMunoz\\MoonLeaflet\\Providers\\MoonLeafletServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}