-
Notifications
You must be signed in to change notification settings - Fork 25
/
composer.json
73 lines (73 loc) · 2.17 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
{
"name": "silverstripe/mfa",
"description": "Enable multi-factor authentication with fallback codes",
"type": "silverstripe-vendormodule",
"license": "BSD-3-Clause",
"keywords": [
"silverstripe",
"2-factor",
"authentication",
"module",
"security"
],
"authors": [
{
"name": "Simon `Firesphere` Erkelens",
"email": "simonerkelens@silverstripe.com"
},
{
"name": "SilverStripe Ltd.",
"homepage": "https://www.silverstripe.com"
},
{
"name": "The SilverStripe Community",
"homepage": "https://www.silverstripe.org"
}
],
"require": {
"php": "^8.1",
"silverstripe/framework": "^5",
"silverstripe/admin": "^2",
"silverstripe/siteconfig": "^5",
"defuse/php-encryption": "^2.3",
"silverstripe/login-forms": "^5"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"squizlabs/php_codesniffer": "^3",
"silverstripe/documentation-lint": "^1",
"silverstripe/standards": "^1",
"phpstan/extension-installer": "^1.3"
},
"conflict": {
"silverstripe/subsites": "<2.2.2 || 2.3.0",
"silverstripe/webauthn-authenticator": "<4.5.0"
},
"suggest": {
"silverstripe/totp-authenticator": "Adds a method to authenticate with you phone using a time-based one-time password.",
"silverstripe/webauthn-authenticator": "Adds a method to authenticate with security keys or built-in platform authenticators."
},
"extra": {
"expose": [
"client/dist",
"client/lang"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"autoload": {
"psr-4": {
"SilverStripe\\MFA\\": "src/",
"SilverStripe\\MFA\\Tests\\": "tests/php/",
"SilverStripe\\MFA\\Tests\\Behat\\": "tests/Behat/"
}
},
"support": {
"issues": "https://github.com/silverstripe/silverstripe-mfa/issues"
},
"minimum-stability": "dev",
"prefer-stable": true
}