forked from leonardomarino/duo_auth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (34 loc) · 1.34 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
{
"name": "lmr/duo_auth",
"type": "roundcube-plugin",
"description": "Duo Security two-factor authentication for Roundcube. Users have multiple ways to authenticate, including: 1. One-tap authentication using Duo’s mobile app; 2. One-time passcodes generated by Duo’s mobile app (works even with no cell coverage); 3. One-time passcodes delivered to any SMS-enabled phone; 4. Phone callback to any phone (mobile or landline!); 5. One-time passcodes generated by an OATH-compliant hardware token.",
"homepage": "https://github.com/leonardomarino/duo_auth",
"keywords": ["two-factor","authentication","Duo Security"],
"license": "GPL-3.0-or-later",
"authors": [
{"name": "Alexios Polychronopoulos"},
{"name": "Leonardo Mariño-Ramírez"},
{"name": "Johnson Chow"},
{"name": "Pavlo Lyha"}
],
"repositories": [
{"type": "composer", "url": "https://plugins.roundcube.net"}
],
"require": {
"php": ">=7.4",
"roundcube/plugin-installer": "~0.3.1",
"duosecurity/duo_universal_php": "^1.0.2"
},
"autoload": {
"psr-4": {
"Duo\\DuoUniversal\\": "src/"
}
},
"extra": {
"roundcube": {
"post-install-script": "bin/install.php",
"post-update-script": "bin/update.php",
"post-uninstall-script": "bin/uninstall.php"
}
}
}