-
Notifications
You must be signed in to change notification settings - Fork 63
/
composer.json
47 lines (47 loc) · 1.09 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
{
"name": "lake/larke-admin",
"description": "An admin api library with JWT and RBAC.",
"keywords": [
"laravel",
"lake",
"larke",
"admin",
"larke-admin"
],
"homepage": "https://github.com/deatil/larke-admin",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "deatil",
"email": "[email protected]",
"homepage": "https://github.com/deatil",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"laravel/framework": "^11.0",
"composer/semver": "^3.2",
"phpseclib/phpseclib": "^3.0",
"ramsey/uuid": "^4.3",
"lake/larke-pclzip": "^1.1",
"lake/larke-jwt": "^1.3",
"lake/larke-auth": "^1.4"
},
"autoload": {
"psr-4": {
"Larke\\Admin\\": "src"
},
"files": [
"src/helper.php"
]
},
"extra" : {
"laravel" : {
"providers" : [
"Larke\\Admin\\ServiceProvider"
]
}
}
}