forked from scheb/two-factor-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.28 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": "scheb/two-factor-bundle",
"type": "symfony-bundle",
"description": "Provides two-factor authentication for Symfony applications",
"keywords": ["two-factor", "two-step", "authentication", "security", "symfony"],
"homepage": "https://github.com/scheb/two-factor-bundle",
"license": "MIT",
"authors": [
{
"name": "Christian Scheb",
"email": "me@christianscheb.de"
}
],
"require": {
"php": "^7.1.3",
"symfony/config": "^3.4|^4.0",
"symfony/dependency-injection": "^3.4|^4.0",
"symfony/event-dispatcher": "^3.4|^4.0",
"symfony/framework-bundle": "^3.4|^4.0",
"symfony/http-foundation": "^3.4|^4.0",
"symfony/http-kernel": "^3.4|^4.0",
"symfony/security-bundle": "^3.4|^4.0",
"symfony/twig-bundle": "^3.4|^4.0",
"sonata-project/google-authenticator": "^2.2",
"lcobucci/jwt": "^3.2"
},
"require-dev": {
"doctrine/lexer": "^1.0.1",
"doctrine/orm": "^2.6",
"phpunit/phpunit": "^7.0",
"swiftmailer/swiftmailer": "^6.0",
"symfony/yaml": "^3.4|^4.0"
},
"autoload": {
"psr-4": {
"Scheb\\TwoFactorBundle\\": ""
}
},
"config": {
"bin-dir": "bin"
}
}