forked from CakeDC/users
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.96 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "cakedc/users",
"description": "Users Plugin for CakePHP",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"oauth2",
"auth",
"authentication",
"cakedc"
],
"homepage": "https://github.com/CakeDC/users",
"license": "MIT",
"authors": [
{
"name": "CakeDC",
"homepage": "http://www.cakedc.com",
"role": "Author"
},
{
"name": "Others",
"homepage": "https://github.com/CakeDC/users/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/CakeDC/users/issues",
"source": "https://github.com/CakeDC/users"
},
"require": {
"cakephp/cakephp": ">=3.2.9 <4.0.0"
},
"require-dev": {
"phpunit/phpunit": "@stable",
"cakephp/cakephp-codesniffer": "^2.0",
"league/oauth2-facebook": "@stable",
"league/oauth2-instagram": "@stable",
"league/oauth2-google": "@stable",
"league/oauth2-linkedin": "@stable",
"google/recaptcha": "@stable",
"robthree/twofactorauth": "^1.5.2"
},
"suggest": {
"league/oauth1-client": "Provides Social Authentication with Twitter",
"league/oauth2-facebook": "Provides Social Authentication with Facebook",
"league/oauth2-instagram": "Provides Social Authentication with Instagram",
"league/oauth2-google": "Provides Social Authentication with Google+",
"league/oauth2-linkedin": "Provides Social Authentication with LinkedIn",
"google/recaptcha": "Provides reCAPTCHA validation for registration form",
"robthree/twofactorauth": "Provides Google Authenticator functionality"
},
"autoload": {
"psr-4": {
"CakeDC\\Users\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CakeDC\\Users\\Test\\": "tests",
"CakeDC\\Users\\Test\\Fixture\\": "tests"
}
}
}