forked from slince/cakephp-permission
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 933 Bytes
/
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
{
"name": "jeffersonsimaogoncalves/cakephp-permission",
"description": "The library provides a flexible way to add role-based access control management to CakePHP 3.x",
"keywords": [
"cakephp",
"permission",
"RBAC",
"role based",
"security",
"manage permission",
"manage roles",
"manage users"
],
"type": "cakephp-plugin",
"license": "MIT",
"authors": [
{
"name": "Tao",
"email": "[email protected]"
},
{
"name": "Jefferson Simão Gonçalves",
"homepage": "https://github.com/jeffersonsimaogoncalves"
}
],
"require": {
"php": "^7.2",
"cakephp/cakephp": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"JeffersonSimaoGoncalves\\CakePermission\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"JeffersonSimaoGoncalves\\CakePermission\\Tests\\": "./tests"
}
}
}