-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.36 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.36 KB
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
54
{
"name": "latent/el-admin",
"description": "This is a backend management API extension package for Laravel+Vue, which can help you quickly build a RBAC permission management backend.",
"license": "MIT",
"keywords":["laravel","admin"],
"support": {
"issues": "https://github.com/pl1998/el-admin/issues",
"source": "https://github.com/pl1998/el-admin"
},
"authors": [
{
"name": "latent",
"email": "pltrueover@gmail.com",
"homepage": "https://github.com/pl1998"
}
],
"require": {
"php": "^8.2|^8.4",
"tymon/jwt-auth": "^2.0",
"illuminate/support": "~11|~12",
"jenssegers/agent": "v2.6.4"
},
"autoload": {
"psr-4": {
"Latent\\ElAdmin\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Latent\\ElAdmin\\ElAdminServiceProvider"
]
}
},
"autoload-dev": {
"psr-4": {
"Latent\\ElAdmin\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"require-dev": {
"phpunit/phpunit": "9.6.x-dev",
"mockery/mockery": "1.7.x-dev"
},
"config": {
"secure-http": false
},
"repositories": {
"latent": {
"type": "path",
"url": "v1.0.1"
}
}
}