forked from btaens/cakephp-hier-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 981 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
{
"name": "btaens/cakephp-hier-auth",
"type": "cakephp-plugin",
"description": "A CakePHP plugin for hierarchical, role based, simple authorization.",
"keywords": ["cakephp", "plugin", "hierarchy", "hierauth", "acl", "roles"],
"homepage": "https://github.com/btaens/cakephp-hier-auth",
"license": "MIT",
"require": {
"php": ">=5.4.16",
"cakephp/cakephp": "~3.0",
"symfony/yaml": "~2.6"
},
"authors": [
{
"name": "Bene Tamás",
"email": "[email protected]",
"role": "Developer"
}
],
"require-dev": {
"cakephp/cakephp-codesniffer": "dev-master"
},
"autoload": {
"psr-4": {
"HierAuth\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"HierAuth\\Test\\": "tests",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests"
}
},
"extra": {
"installer-name": "HierAuth"
}
}