-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.06 KB
/
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
{
"name": "boleiros/guardian",
"description": "ACL plugin for CakePHP 3.x",
"type": "cakephp-plugin",
"keywords": ["cakephp", "templates", "plugin"],
"homepage": "https://cakephpbrasil.com.br",
"license": "MIT",
"authors": [
{
"name": "Flaviano Honorato",
"email": "flaviano.honorato@gmail.com",
"homepage": "https://www.flaviano.com.br/",
"role": "Author"
},
{
"name": "Elton Nicolau",
"email": "eltonantunes@hotmail.com",
"homepage": "https://github.com/elton182/",
"role": "Author"
}
],
"require": {
"php": ">=5.5.9",
"cakephp/cakephp": ">=3.3.2 <4.0.0"
},
"require-dev": {
"phpunit/phpunit": "*",
"cakephp/migrations": "^1.6"
},
"autoload": {
"psr-4": {
"Guardian\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Guardian\\Test\\": "tests",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests"
}
}
}