-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
79 lines (79 loc) · 1.78 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "camfindlay/silverstripe-twofactorauth",
"type": "silverstripe-vendormodule",
"description": "Adds 2 factor authentication to SilverStripe CMS",
"license": "BSD-3-Clause",
"keywords": [
"silverstripe",
"2fa",
"otp",
"security",
"authentication"
],
"homepage": "https://github.com/camfindlay/silverstripe-twofactorauth",
"support": {
"issues": "https://github.com/camfindlay/silverstripe-twofactorauth/issues",
"source": "https://github.com/camfindlay/silverstripe-twofactorauth/tree/master"
},
"require": {
"rych/otp": "1.1.*",
"endroid/qr-code": "1.3.*",
"silverstripe/framework": "^4.0.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3"
},
"conflict": {
"91carriage/2fa": "*"
},
"replace": {
"91carriage/2fa": "*"
},
"authors": [
{
"name": "Simon Welsh",
"email": "[email protected]",
"homepage": "http://coding.simon.geek.nz/"
},
{
"name": "Cam Findlay",
"email": "[email protected]"
},
{
"name": "Fred Condo",
"email": "[email protected]",
"role": "Developer",
"homepage": "http://oddnoc.github.io"
},
{
"name": "Stephen McMahon",
"email": "[email protected]",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"_2fa\\": "src/"
}
},
"scripts": {
"lint": "phpcs --extensions=php src/ tests/"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"expose": [
"css",
"js"
],
"screenshots": [
"docs/en/_images/2fa-token-qr.png",
"docs/en/_images/2fa-login.png",
"docs/en/_images/2fa-backup.png"
],
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}