-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·42 lines (42 loc) · 987 Bytes
/
composer.json
File metadata and controls
executable file
·42 lines (42 loc) · 987 Bytes
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
{
"name": "casbin/codeigniter-permission",
"description": "Associate users with roles and permissions, use Casbin in CodeIgniter4 Web Framework.",
"authors": [
{
"name": "TechLee",
"email": "techlee@qq.com"
}
],
"license": "Apache-2.0",
"keywords": [
"casbin",
"rbac",
"acl",
"authorization",
"permission",
"abac",
"access control",
"codeigniter"
],
"scripts": {
"test": "vendor/bin/phpunit"
},
"require": {
"php": "^8.1",
"codeigniter4/framework": "^4.5",
"casbin/casbin": "^4.0.2"
},
"autoload": {
"psr-4": {
"Casbin\\CodeIgniter\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.0|^11.0"
},
"autoload-dev": {
"psr-4": {
"Casbin\\CodeIgniter\\Tests\\": "tests/"
}
}
}