forked from silverstripe/silverstripe-totp-authenticator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.01 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
{
"name": "silverstripe/totp-authenticator",
"description": "A TOTP authenticator for use with silverstripe/mfa",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"CMS",
"mfa",
"2fa",
"totp",
"security",
"authentication"
],
"license": "BSD-3-Clause",
"require": {
"php": ">=7.1.0",
"silverstripe/mfa": "^4.0",
"silverstripe/siteconfig": "^4.0",
"spomky-labs/otphp": "^9.1",
"paragonie/constant_time_encoding": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"SilverStripe\\TOTP\\": "src/",
"SilverStripe\\TOTP\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
},
"expose": [
"client/dist"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}