forked from sonata-project/SonataUserBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 2.83 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
76
77
{
"name": "sonata-project/user-bundle",
"type": "symfony-bundle",
"description": "Symfony SonataUserBundle",
"keywords": ["user", "sonata", "google authenticator"],
"homepage": "http://sonata-project.org/bundles/user",
"license": "MIT",
"authors": [
{
"name": "Thomas Rabaix",
"email": "[email protected]",
"homepage": "http://sonata-project.org"
},
{
"name": "Sonata Community",
"homepage": "https://github.com/sonata-project/SonataUserBundle/contributors"
}
],
"require": {
"php": "^7.1",
"friendsofsymfony/user-bundle": "^2.0",
"sonata-project/admin-bundle": "^3.1",
"sonata-project/core-bundle": "^3.2",
"sonata-project/datagrid-bundle": "^2.2.1",
"sonata-project/doctrine-extensions": "^1.0",
"sonata-project/easy-extends-bundle": "^2.2",
"swiftmailer/swiftmailer": "^4.3 || ^5.0 || ^6.0",
"symfony/console": "^2.8 || ^3.2",
"symfony/form": "^2.8 || ^3.2",
"symfony/http-foundation": "^2.8 || ^3.2",
"symfony/security": "^2.8 || ^3.2",
"symfony/translation": "^2.8 || ^3.2"
},
"require-dev": {
"doctrine/orm": "^2.0",
"friendsofsymfony/rest-bundle": "^1.5 || ^2.0",
"jms/serializer-bundle": "^0.13 || ^1.0",
"matthiasnoback/symfony-config-test": "^2.1",
"matthiasnoback/symfony-dependency-injection-test": "^1.1",
"nelmio/api-doc-bundle": "^2.4",
"sonata-project/block-bundle": "^3.2",
"sonata-project/google-authenticator": "^1.0 || ^2.0",
"sonata-project/seo-bundle": "^2.0",
"symfony/phpunit-bridge": "^3.3"
},
"suggest": {
"friendsofsymfony/rest-bundle": "For using the public API methods.",
"jms/serializer": "For using the public API methods.",
"nelmio/api-doc-bundle": "For using the public API methods.",
"sonata-project/doctrine-orm-admin-bundle": "^3.0",
"sonata-project/google-authenticator": "For google auth user login",
"sonata-project/seo-bundle": "For SEO breadcrumb block service usage"
},
"conflict": {
"friendsofsymfony/rest-bundle": "<1.1",
"jms/serializer": "<0.13 || >=2.0",
"nelmio/api-doc-bundle": "<2.4 || >= 3.0",
"sonata-project/block-bundle": "<3.2",
"sonata-project/doctrine-orm-admin-bundle": "<3.0",
"sonata-project/google-authenticator": "<1.0",
"sonata-project/seo-bundle": "<2.0"
},
"autoload": {
"psr-4": { "Sonata\\UserBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Sonata\\UserBundle\\Tests\\": "tests/" }
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
}
}