forked from andrej-griniuk/cakephp-two-factor-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.03 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.03 KB
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
{
"name": "andrej-griniuk/cakephp-two-factor-auth",
"description": "CakePHP auth component and provider fot two-factor authentication",
"type": "cakephp-plugin",
"keywords": ["cakephp", "auth", "two-factor"],
"homepage": "http://github.com/andrej-griniuk/cakephp-two-factor-auth",
"license": "MIT",
"authors": [
{
"name": "Andrej Griniuk",
"email": "andrej.griniuk@gmail.com"
}
],
"require": {
"php": ">=5.4.16",
"cakephp/cakephp": "~3.0",
"robthree/twofactorauth": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "*",
"friendsofcake/cakephp-test-utilities": "dev-master",
"cakephp/cakephp-codesniffer": "dev-master",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-4": {
"TwoFactorAuth\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"TwoFactorAuth\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
}
}