forked from paul999/phpbb_2fa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 846 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 846 Bytes
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
{
"name": "paul999/tfa",
"type": "phpbb-extension",
"description": "This extension adds support for two factor authentication into your phpBB board. ",
"homepage": "https://www.phpbbextensions.io",
"version": "1.0.1",
"keywords": [],
"license": "GPL-2.0-only",
"authors": [
{
"name": "Paul Sohier",
"email": "paul@phpbb.com",
"homepage": "https://www.paulsohier.nl",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"ext-json": "*",
"ext-openssl": "*",
"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"
}
}
}