-
Notifications
You must be signed in to change notification settings - Fork 73
/
composer.json
49 lines (49 loc) · 1.13 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
{
"name": "smallruraldog/laravel-vue-admin",
"description": "开箱即用的Laravel后台扩展",
"license": "MIT",
"authors": [
{
"name": "zhang wei",
"email": "[email protected]"
}
],
"homepage": "https://github.com/smallruraldog/admin",
"keywords": [
"Laravel",
"Admin",
"Vue"
],
"require": {
"illuminate/support": "~5|~6|~7|~8"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"mockery/mockery": "^1.1",
"orchestra/testbench": "~3|~4",
"sempro/phpunit-pretty-print": "^1.0"
},
"autoload": {
"psr-4": {
"SmallRuralDog\\Admin\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"SmallRuralDog\\Admin\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"SmallRuralDog\\Admin\\AdminServiceProvider"
],
"aliases": {
"Admin": "SmallRuralDog\\Admin\\Facades\\Admin"
}
}
}
}