-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
72 lines (72 loc) · 2.27 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "scheb/2fa",
"type": "symfony-bundle",
"description": "Provides two-factor authentication for Symfony applications",
"keywords": ["two-factor", "two-step", "authentication", "security", "symfony"],
"homepage": "https://github.com/scheb/2fa",
"license": "MIT",
"authors": [
{
"name": "Christian Scheb",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2.5",
"ext-json": "*",
"symfony/config": "^4.4|^5.0",
"symfony/dependency-injection": "^4.4|^5.0",
"symfony/event-dispatcher": "^4.4|^5.0",
"symfony/framework-bundle": "^4.4|^5.0",
"symfony/http-foundation": "^4.4|^5.0",
"symfony/http-kernel": "^4.4|^5.0",
"symfony/property-access": "^4.4|^5.0",
"symfony/security-bundle": "^4.4.1|^5.0",
"symfony/twig-bundle": "^4.4|^5.0",
"lcobucci/jwt": "^3.4|^4.0",
"spomky-labs/otphp": "^9.1|^10.0",
"paragonie/constant_time_encoding": "^2.2",
"endroid/qr-code": "^3.0"
},
"require-dev": {
"doctrine/persistence": "^1.3|^2.0",
"phpunit/phpunit": "^8.0|^9.0",
"swiftmailer/swiftmailer": "^6.0",
"symfony/mailer": "^4.4|^5.0",
"symfony/yaml": "^4.4|^5.0",
"escapestudios/symfony2-coding-standard": "^3.9",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^3.17|^4.0",
"symfony/polyfill-php80": "^1.15"
},
"autoload": {
"psr-4": {
"Scheb\\TwoFactorBundle\\": [
"src/backup-code",
"src/bundle",
"src/email",
"src/google-authenticator",
"src/qr-code",
"src/totp",
"src/trusted-device"
]
}
},
"autoload-dev": {
"psr-4": {
"Scheb\\TwoFactorBundle\\Tests\\": "tests"
}
},
"replace": {
"scheb/2fa-backup-code": "^5.0",
"scheb/2fa-bundle": "^5.0",
"scheb/2fa-email": "^5.0",
"scheb/2fa-google-authenticator": "^5.0",
"scheb/2fa-qr-code": "^5.0",
"scheb/2fa-totp": "^5.0",
"scheb/2fa-trusted-device": "^5.0"
},
"conflict": {
"scheb/two-factor-bundle": "*"
}
}