-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 934 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 934 Bytes
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
{
"name": "ycookies/morepanel",
"alias": "多管理面板生成器",
"description": "一键生成管理面板,支持Admin免密登陆其它管理面板,每个管理面板自身独立(管理员,权限,角色),Saas系统最方便的实现",
"type": "library",
"keywords": ["dcat-admin", "extension"],
"homepage": "https://github.com/ycookies/morepanel",
"license": "MIT",
"authors": [
{
"name": "杨光",
"email": "3664839@qq.com"
}
],
"require": {
"php": ">=7.4.0",
"dcat-plus/laravel-admin": "^1.0"
},
"autoload": {
"psr-4": {
"Ycookies\\Morepanel\\": "src/"
}
},
"extra": {
"dcat-admin": "Ycookies\\Morepanel\\MorepanelServiceProvider",
"laravel": {
"providers": [
"Ycookies\\Morepanel\\MorepanelServiceProvider"
]
}
}
}