-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
38 lines (38 loc) · 952 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
31
32
33
34
35
36
37
38
{
"name": "moell/laravel-layui-admin",
"description": "基于 Laravel, Layui 构建的 RBAC 后台管理系统。",
"keywords": ["laravel", "admin", "layui", "layui admin", "laravel layui admin", "laravel admin"],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "moell",
"email": "[email protected]"
}
],
"require": {
"spatie/laravel-permission": "~3.0"
},
"autoload": {
"psr-4": {
"Moell\\LayuiAdmin\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Moell\\LayuiAdmin\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Moell\\LayuiAdmin\\Providers\\LayuiAdminServiceProvider"
]
}
},
"minimum-stability":"dev",
"prefer-stable": true
}