forked from CakeDC/users
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
31 lines (31 loc) · 933 Bytes
/
Copy pathcomposer.json
File metadata and controls
31 lines (31 loc) · 933 Bytes
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
{
"name": "cakedc/users",
"description": "Users plugin for CakePHP 3.1",
"type": "cakephp-plugin",
"require": {
"php": ">=5.4.16",
"cakephp/cakephp": "3.1.*"
},
"require-dev": {
"phpunit/phpunit": "*",
"opauth/opauth": "*",
"opauth/facebook": "*",
"opauth/twitter": "*"
},
"suggest": {
"opauth/opauth": "Used for Social Login, if you add Opauth, remember adding at least one strategy too",
"opauth/facebook": "Provide Social Login: Facebook Strategy, requires Opauth",
"opauth/twitter": "Provide Social Login: Twitter Strategy, requires Opauth",
"google/recaptcha": "Provide reCAPTCHA validation for registration form"
},
"autoload": {
"psr-4": {
"CakeDC\\Users\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CakeDC\\Users\\Test\\": "tests"
}
}
}