-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.29 KB
/
Copy pathcomposer.json
File metadata and controls
50 lines (50 loc) · 1.29 KB
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
45
46
47
48
49
50
{
"name": "bnf/mfa-webauthn",
"description": "WebAuthn Provider for TYPO3 Multi Factor Authentication",
"type": "typo3-cms-extension",
"version": "1.4.1",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Benjamin Franzke",
"email": "benjaminfranzke@gmail.com"
}
],
"require": {
"php": "^8.2",
"typo3/cms-core": "^12.0 || ^13.0 || ^14.0 || 15.0.x-dev",
"web-auth/webauthn-lib": "^5.3"
},
"suggest": {
"ext-bcmath": "bcmath or gmp are needed for webauthn",
"ext-gmp": "bcmath or gmp are needed for webauthn"
},
"autoload": {
"psr-4": {
"Bnf\\MfaWebauthn\\": "Classes/"
},
"classmap": [
"Resources/Private/Libraries/"
]
},
"extra": {
"typo3/cms": {
"Package": {
"providesPackages": {
"web-auth/webauthn-lib": ""
}
},
"extension-key": "mfa_webauthn"
}
},
"require-dev": {
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-deprecation-rules": "*"
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
}
}