forked from php-casbin/webman-permission
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.06 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
{
"name": "casbin/webman-permission",
"keywords": [
"webman",
"workerman",
"casbin",
"permission",
"access-control",
"authorization",
"rbac",
"acl",
"abac",
"authz"
],
"description": "webman casbin permission plugin",
"authors": [
{
"name": "Tinywan",
"email": "[email protected]"
}
],
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.0",
"casbin/casbin": "~4.0",
"topthink/think-orm": "^3.0",
"php-di/php-di": "^7.0",
"doctrine/annotations": "^1.13",
"workerman/redis": "^2.0"
},
"autoload": {
"psr-4": {
"Casbin\\WebmanPermission\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Casbin\\WebmanPermission\\Tests\\": "tests/"
}
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.7",
"workerman/webman": "^1.5",
"psr/container": "^1.1.1",
"illuminate/database": "^8.83",
"illuminate/pagination": "^8.83",
"illuminate/events": "^8.83",
"webman/think-orm": "^1.0",
"phpunit/phpunit": "^11.4"
}
}