-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.05 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": "supseven/webauthn",
"license": "GPL-2.0-or-later",
"description": "Webauthn provider for MFA login in TYPO3 v11+",
"type": "typo3-cms-extension",
"require": {
"php": "^8.1",
"ext-fileinfo": "*",
"ext-json": "*",
"psr/http-message": "*",
"psr/log": "*",
"typo3/cms-backend": "^11.5 || ^12.2",
"typo3/cms-core": "^11.5 || ^12.2",
"typo3/cms-frontend": "^11.5 || ^12.2",
"typo3/cms-fluid": "^11.5 || ^12.2",
"web-auth/webauthn-lib": "^4.0",
"web-token/jwt-signature-algorithm-rsa": "^3.1",
"web-token/jwt-key-mgmt": "^3.1"
},
"autoload": {
"psr-4": {
"Supseven\\Webauthn\\": "src"
}
},
"extra": {
"typo3/cms": {
"extension-key": "webauthn"
}
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": false,
"typo3/cms-composer-installers": false
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.11"
}
}