-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
39 lines (39 loc) · 1.04 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
{
"name": "syspass/plugin-authenticator",
"type": "syspass-plugin",
"description": "2FA authentication plugin for sysPass based on TOTP algorithm (RFC 6238)",
"homepage": "https://syspass.org",
"minimum-stability": "stable",
"license": "GPL-3.0",
"authors": [
{
"name": "Rubén Domínguez",
"email": "[email protected]",
"role": "Author/Developer",
"homepage": "https://syspass.org/"
}
],
"support": {
"issues": "https://github.com/nuxsmin/sysPass/issues",
"source": "https://github.com/nuxsmin/sysPass-Authenticator",
"docs": "https://doc.syspass.org"
},
"require": {
"syspass/extension-installer-plugin": "^2.0",
"php": "~7.3 || ~7.4",
"bacon/bacon-qr-code": "^2.0",
"ext-gettext": "*"
},
"extra": {
"type": "web"
},
"autoload": {
"psr-4": {
"SP\\Modules\\Web\\Plugins\\Authenticator\\": "src/lib/"
},
"classmap": [
"src/lib/Controllers/AuthenticatorController.php",
"src/lib/Controllers/AuthenticatorLoginController.php"
]
}
}