-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathcomposer.json
50 lines (50 loc) · 1.26 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
44
45
46
47
48
49
50
{
"name": "slowlyo/owl-admin",
"description": "基于 laravel、amis 开发的后台框架~",
"license": "MIT",
"authors": [
{
"name": "slowlyo",
"email": "[email protected]",
"homepage": "https://github.com/slowlyo"
}
],
"homepage": "https://github.com/slowlyo/owl-admin",
"support": {
"email": "[email protected]",
"issues": "https://github.com/Slowlyo/owl-admin/issues",
"forum": "https://github.com/orgs/owl-admin/discussions",
"wiki": "https://doc.owladmin.com/"
},
"keywords": [
"laravel",
"owl-admin",
"admin",
"amis"
],
"require": {
"php": ">=8.2",
"illuminate/support": ">=11",
"slowlyo/laravel-support": "*",
"ext-zip": "*",
"ext-gd": "*"
},
"autoload": {
"psr-4": {
"Slowlyo\\OwlAdmin\\": "src/"
},
"files": [
"src/Support/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Slowlyo\\OwlAdmin\\AdminServiceProvider"
],
"aliases": {
"OwlAdmin": "Slowlyo\\OwlAdmin\\Facades\\OwlAdmin"
}
}
}
}