forked from JcPires/CakePhp3-AclManager
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
29 lines (29 loc) · 792 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
{
"name": "jcpires/cakephp3-aclmanager",
"type": "cakephp-plugin",
"keywords": ["cakephp", "cake3", "plugin", "acl"],
"homepage": "https://github.com/JcPires/CakePhp3-AclManager",
"description": "An acl-manager plugin for CakePhp3",
"authors": [
{
"name": "Jean-Christophe Pires",
"email": "[email protected]",
"homepage": "https://github.com/JcPires"
}
],
"require": {
"php": ">=5.4.16",
"cakephp/cakephp": "^3.0",
"cakephp/acl": "^0.2.1"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "dev-master"
},
"autoload": {
"psr-4": {
"JcPires\\AclManager\\": "src"
}
},
"minimum-stability" : "stable",
"prefer-stable": true
}