-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
43 lines (43 loc) · 1.14 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
43
{
"name": "arandu/laravel-mui-admin",
"description": "A highly customizable CMS for Laravel, built with React and Material UI.",
"license": "MIT",
"autoload": {
"psr-4": {
"Arandu\\LaravelMuiAdmin\\": "src/"
}
},
"authors": [
{
"name": "Bruno Polo",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-dom": "*",
"ext-gd": "*",
"ext-simplexml": "*",
"ext-xml": "*",
"ext-xmlreader": "*",
"ext-xmlwriter": "*",
"ext-zip": "*",
"laravel/ui": "^4.2",
"illuminate/filesystem": "^9.19",
"illuminate/support": "^9.19",
"illuminate/console": "^9.19",
"illuminate/routing": "^9.19",
"illuminate/database": "^9.19",
"illuminate/http": "^9.19",
"illuminate/macroable": "^9.19",
"spatie/laravel-permission": "^6.0",
"phpoffice/phpspreadsheet": "^1.29"
},
"extra": {
"laravel": {
"providers": [
"Arandu\\LaravelMuiAdmin\\AdminServiceProvider"
]
}
}
}