forked from paul999/phpbb_2fa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 868 Bytes
/
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": "paul999/tfa",
"type": "phpbb-extension",
"description": "This extension adds support for the U2F two factor authentication standard into your phpBB board. ",
"homepage": "http://www.phpbb-2fa.com",
"version": "0.0.4",
"keywords": [],
"license": "GPL-2.0-only",
"authors": [
{
"name": "Paul Sohier",
"email": "[email protected]",
"homepage": "http://www.paulsohier.nl",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"composer/installers": "~1.0",
"marc1706/otp-authenticate": "~1.0",
"paul999/u2flib-server": "dev-master",
"paragonie/random_compat": "~1.4|~2.0"
},
"require-dev": {
"phing/phing": "2.4.*",
"phpbb/epv": "dev-master"
},
"extra": {
"display-name": "phpBB Two Factor Authentication",
"soft-require": {
"phpbb/phpbb": ">=3.2"
}
},
"config": {
"platform": {
"php": "5.6"
}
}
}