-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
50 lines (50 loc) · 1.01 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": "ibrand/backend",
"description": "ibrand backend base laravel-admin",
"type": "library",
"keywords": [
"laravel",
"backend",
"grid",
"form"
],
"homepage": "https://github.com/ibrandcc/backend",
"license": "MIT",
"authors": [
{
"name": "shjchen",
"email": "ibrand.shjchen@foxmail.com"
}
],
"require": {
"php": ">=7.0.0",
"encore/laravel-admin": "1.5.19",
"laravel-admin-ext/helpers": "1.0.2",
"laravel-admin-ext/scheduling": "1.0.1",
"laravel-admin-ext/log-viewer": "1.0.2",
"laravel-admin-ext/redis-manager": "1.0.1",
"laravel-admin-ext/backup": "1.0.2",
"ibrand/laravel-sms": "~1.0",
"ibrand/setting": "~1.0",
"maatwebsite/excel": "~2.1.23"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"orchestra/testbench": "~3.5"
},
"autoload": {
"psr-4": {
"iBrand\\Backend\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"iBrand\\Backend\\BackendServiceProvider"
],
"aliases": {
"BackendMenu": "iBrand\\Backend\\Facades\\Menu"
}
}
}
}