-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
38 lines (37 loc) · 1.02 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
{
"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": "zoro.fmt@gmail.com",
"homepage": "https://github.com/Xety"
}
],
"require": {
"php": ">=5.4.16",
"cakephp/cakephp": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"cakephp/cakephp-codesniffer": "master-dev"
},
"autoload": {
"psr-4": {
"Xety\\Cake3CookieAuth\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Xety\\Cake3CookieAuth\\Test\\": "tests"
}
}
}