-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
53 lines (53 loc) · 1.32 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
51
52
53
{
"name": "joycezhang/laravellib",
"type": "library",
"description": "Laravel 6|7|8|9|10 Repository,enum,model ",
"keywords": [
"laravel",
"repository",
"eloquent",
"model",
"cache",
"enum"
],
"require": {
"php": "^7.2|^8.1",
"illuminate/support": "^8.0|^9.0|^10.0",
"illuminate/database": "^8.0|^9.0|^10.0",
"illuminate/cache": "^8.0|^9.0|^10.0",
"illuminate/http": "^8.0|^9.0|^10.0",
"illuminate/config": "^8.0|^9.0|^10.0",
"illuminate/pagination": "^8.0|^9.0|^10.0",
"illuminate/console": "^8.0|^9.0|^10.0",
"illuminate/filesystem": "^8.0|^9.0|^10.0",
"illuminate/validation": "^8.0|^9.0|^10.0"
},
"license": "MIT",
"authors": [
{
"name": "joycezhangw",
"homepage": "https://qilindao.github.io/docs/",
"email": "[email protected]"
}
],
"homepage": "https://qilindao.github.io/docs/backend/",
"support": {
"wiki":"https://qilindao.github.io/docs/backend/",
"source":"https://github.com/Joycezhangw/laravel-lib",
"docs": "https://qilindao.github.io/docs/backend/"
},
"autoload": {
"psr-4": {
"JoyceZ\\LaravelLib\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"JoyceZ\\LaravelLib\\ServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}