-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
33 lines (33 loc) · 988 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
{
"name": "jbtronics/2fa-webauthn",
"type": "symfony-bundle",
"license": "MIT",
"description": "Webauthn Two-Factor-Authentictication Plugin for scheb/2fa",
"keywords": ["2fa", "webauthn", "two-factor-authentication", "scheb-2fa", "symfony", "symfony-bundle"],
"autoload": {
"psr-4": {
"Jbtronics\\TFAWebauthn\\": "src/"
}
},
"authors": [
{
"name": "Jan Böhmer",
"email": "mail@jan-boehmer.de"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"symfony/framework-bundle": "^6.0|^7.0",
"scheb/2fa-bundle": "^6.0.0|^7.0.0",
"web-auth/webauthn-lib": "^4.7",
"psr/log": "^3.0.0|^2.0.0",
"symfony/psr-http-message-bridge": "^2.1|^6.1|^7.0",
"nyholm/psr7": "^1.5",
"symfony/uid": "^6.0|^7.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^9.5"
}
}