-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
41 lines (41 loc) · 1.24 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
{
"name": "r/u2f-two-factor-bundle",
"type": "symfony-bundle",
"description": "Use U2F-Keys as 2FA for Symfony2, using scheb/two-factor-bundle",
"keywords": ["two-factor", "two-step", "authentication", "symfony2", "fido", "yubikey"],
"homepage": "https://github.com/darookee/u2f-two-factor-bundle",
"license": "MIT",
"authors": [
{
"name": "Nils Uliczka",
"email": "[email protected]"
},
{
"name": "Francesco De Francesco",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3",
"ext-json": "*",
"doctrine/common": "*",
"scheb/two-factor-bundle": "^3.2.0|^4.0.0",
"yubico/u2flib-server": "^1.0.0",
"symfony/framework-bundle": "^3.4|^4.0|^5.0",
"symfony/templating": "^3.4|^4.0|^5.0",
"doctrine/collections": "^1.6",
"symfony/event-dispatcher-contracts": "^2.0"
},
"conflict": {
"tubssz/u2f-two-factor-bundle": "*",
"godzillante/u2f-two-factor-bundle": "*"
},
"autoload": {
"psr-4": {
"R\\U2FTwoFactorBundle\\": ""
}
},
"require-dev": {
"phpstan/phpstan": "^0.11.6"
}
}