-
Notifications
You must be signed in to change notification settings - Fork 75
/
composer.json
75 lines (75 loc) · 2.38 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
73
74
75
{
"name": "scheb/2fa",
"type": "symfony-bundle",
"description": "Two-factor authentication for Symfony applications (please use scheb/2fa-bundle to install)",
"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": "~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-json": "*",
"lcobucci/clock": "^3.0",
"lcobucci/jwt": "^5.0",
"spomky-labs/otphp": "^11.0",
"symfony/config": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/event-dispatcher": "^6.4 || ^7.0",
"symfony/framework-bundle": "^6.4 || ^7.0",
"symfony/http-foundation": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/property-access": "^6.4 || ^7.0",
"symfony/security-bundle": "^6.4 || ^7.0",
"symfony/twig-bundle": "^6.4 || ^7.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"doctrine/persistence": "^1.3 || ^2.0 || ^3.0",
"egulias/email-validator": "^4.0",
"phpunit/phpunit": "^10.1",
"psr/container": ">=1.1",
"squizlabs/php_codesniffer": "^3.5",
"symfony/mailer": "^6.4 || ^7.0",
"symfony/yaml": "^6.4 || ^7.0",
"vimeo/psalm": "^5.0"
},
"autoload": {
"psr-4": {
"Scheb\\TwoFactorBundle\\": [
"src/backup-code",
"src/bundle",
"src/email",
"src/google-authenticator",
"src/totp",
"src/trusted-device"
]
}
},
"autoload-dev": {
"psr-4": {
"Scheb\\TwoFactorBundle\\Tests\\": "tests"
}
},
"replace": {
"scheb/2fa-backup-code": "^6.0",
"scheb/2fa-bundle": "^6.0",
"scheb/2fa-email": "^6.0",
"scheb/2fa-google-authenticator": "^6.0",
"scheb/2fa-totp": "^6.0",
"scheb/2fa-trusted-device": "^6.0"
},
"conflict": {
"scheb/two-factor-bundle": "*"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": false
}
}
}