-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
42 lines (42 loc) · 1.19 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
40
41
42
{
"name": "web-auth/webauthn-symfony-bundle",
"type": "symfony-bundle",
"license": "MIT",
"description": "FIDO2/Webauthn Security Bundle For Symfony",
"keywords": [
"FIDO",
"FIDO2",
"webauthn"
],
"homepage": "https://github.com/web-auth",
"authors": [
{
"name": "Florent Morselli",
"homepage": "https://github.com/Spomky"
},
{
"name": "All contributors",
"homepage": "https://github.com/web-auth/webauthn-symfony-bundle/contributors"
}
],
"require": {
"php": ">=8.1",
"nyholm/psr7": "^1.1",
"spomky-labs/cbor-bundle": "^3.0",
"symfony/config": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/framework-bundle": "^6.0",
"symfony/http-client": "^6.0",
"symfony/psr-http-message-bridge": "^2.0",
"symfony/security-bundle": "^6.0",
"symfony/serializer": "^6.0",
"symfony/validator": "^6.0",
"web-auth/webauthn-lib": "self.version",
"web-token/jwt-signature": "^3.0"
},
"autoload": {
"psr-4": {
"Webauthn\\Bundle\\": "src/"
}
}
}