forked from php-casbin/webman-permission
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.13 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.13 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
{
"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": "756684177@qq.com"
}
],
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.0",
"casbin/casbin": "~4.0",
"topthink/think-orm": "^2.0.53 || ^3.0.0 || ^4.0.30 || dev-master",
"php-di/php-di": "^7.0",
"doctrine/annotations": "^2.0",
"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||^2.0",
"psr/container": "^1.1.1",
"webman/think-orm": "^1.0",
"phpunit/phpunit": "^10.5",
"webman/database": "^2.1",
"illuminate/pagination": "^12.20",
"illuminate/events": "^12.20",
"symfony/var-dumper": "^7.3"
}
}