-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (41 loc) · 1.06 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
{
"name": "ndeblauw/blueadmin2",
"description": "Admin backend",
"license": "proprietary",
"repositories":[
{
"type": "vcs",
"url" : "[email protected]:ndeblauw/blueadmin2.git"
}
],
"authors": [
{
"name": "Nico Deblauwe",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4|^8.1",
"laravel/framework": "^7.0|^8.0|^9.0|^10.0",
"yajra/laravel-datatables-oracle": "^9.11.0|^10.0",
"dyrynda/laravel-cascade-soft-deletes": "^3.0|^4.0",
"spatie/laravel-medialibrary": "^8.7.0|^9.0|^10.0",
"spatie/laravel-permission": "^3.15|^4.0|^5.0",
"maxeckel/livewire-editorjs": "^1.1",
"livewire/livewire": "^2.3"
},
"autoload": {
"psr-4": {
"Ndeblauw\\BlueAdmin\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Ndeblauw\\BlueAdmin\\BlueAdminServiceProvider"
]
}
}
}