forked from aymanalhattami/filament-page-with-sidebar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 897 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
{
"name": "aymanalhattami/filament-page-with-sidebar",
"description": "Organize resource pages in sidebar instead of putting all the buttons and links elsewhere in order to make navigation between pages more comfortable.",
"type": "library",
"require": {
"filament/filament": "^3.0",
"spatie/laravel-package-tools": "^1.0",
"laravel/framework": "^11"
},
"license": "MIT",
"autoload": {
"psr-4": {
"AymanAlhattami\\FilamentPageWithSidebar\\": "src/"
}
},
"authors": [
{
"name": "Ayman Alhattami",
"email": "[email protected]"
}
],
"extra": {
"laravel": {
"providers": [
"AymanAlhattami\\FilamentPageWithSidebar\\FilamentPageWithSidebarServiceProvider"
]
}
},
"minimum-stability": "dev"
}