-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.08 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": "web-auth/webauthn-symfony-security-bundle",
"type": "symfony-bundle",
"license": "MIT",
"description": "FIDO2/Webauthn Security Bundle For Symfony",
"keywords": ["FIDO", "FIDO2", "U2F", "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-security-bundle/contributors"
}
],
"require": {
"symfony/psr-http-message-bridge": "^1.1",
"symfony/security-bundle": "^4.2",
"web-auth/webauthn-symfony-bundle": "^1.1"
},
"autoload": {
"psr-4": {
"Webauthn\\SecurityBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Webauthn\\SecurityBundle\\Tests\\Functional\\": "tests/functional/"
}
},
"extra": {
"branch-alias": {
"v1.0": "1.0.x-dev",
"v1.1": "1.1.x-dev"
}
}
}