forked from dereuromark/cakephp-tinyauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 930 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
{
"name": "dereuromark/cakephp-tinyauth",
"type": "cakephp-plugin",
"description": "A CakePHP plugin to handle user authentication and authorization the easy way.",
"keywords": ["cakephp", "plugin", "tinyauth", "authentication", "authorization", "roles"],
"homepage": "https://github.com/dereuromark/cakephp-tinyauth",
"license": "MIT",
"authors": [
{
"name": "Mark Scherer",
"homepage": "http://www.dereuromark.de",
"role": "Maintainer"
}
],
"require": {
"php": ">=5.5",
"cakephp/cakephp": "~3.2"
},
"require-dev": {
"fig-r/psr2r-sniffer": "dev-master"
},
"support": {
"source": "https://github.com/dereuromark/cakephp-tinyauth"
},
"autoload": {
"psr-4": {
"TinyAuth\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TinyAuth\\Test\\": "tests",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests",
"TestApp\\": "tests/TestApp"
}
},
"extra": {
"installer-name": "TinyAuth"
}
}