-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·48 lines (48 loc) · 1.04 KB
/
composer.json
File metadata and controls
executable file
·48 lines (48 loc) · 1.04 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
{
"name": "shopper/sidebar",
"description": "A sidebar builder for Laravel",
"keywords": [
"laravel",
"sidebar",
"builder"
],
"license": "MIT",
"authors": [
{
"name": "Arthur Monney",
"email": "monneylobe@gmail.com"
}
],
"require": {
"php": "^8.3",
"mckenziearts/blade-untitledui-icons": "^1.5",
"illuminate/cache": "^11.28|^12.0|^13.0",
"illuminate/container": "^11.28|^12.0|^13.0",
"illuminate/contracts": "^11.28|^12.0|^13.0",
"illuminate/support": "^11.28|^12.0|^13.0",
"illuminate/routing": "^11.28|^12.0|^13.0",
"illuminate/view": "^11.28|^12.0|^13.0",
"livewire/livewire": "^3.7|^4.0",
"spatie/laravel-package-tools": "^1.9"
},
"autoload": {
"psr-4": {
"Shopper\\Sidebar\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Shopper\\Sidebar\\SidebarServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}