forked from Xety/Cake3-CookieAuth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (36 loc) · 837 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": "xety/cake3-cookieauth",
"type": "cakephp-plugin",
"description": "A simple Cake3 plugin to authenticate users with Cookies.",
"keywords": ["cakephp", "cake3", "plugin", "cookie", "auth", "authenticate", "login"],
"homepage": "https://github.com/Xety/Cake3-CookieAuth",
"license": "MIT",
"support":{
"source":"https://github.com/Xety/Cake3-CookieAuth",
"issues":"https://github.com/Xety/Cake3-CookieAuth/issues"
},
"authors": [
{
"name": "Xety",
"email": "[email protected]",
"homepage": "https://github.com/Xety"
}
],
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"cakephp/cakephp": "3.0.*-dev",
"phpunit/phpunit": "4.1.*"
},
"autoload": {
"psr-4": {
"Xety\\Cake3CookieAuth\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Xety\\Cake3CookieAuth\\Test\\": "tests"
}
}
}