forked from sonata-project/SonataUserBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
112 lines (112 loc) · 4.03 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"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.3 || ^8.0",
"doctrine/common": "^2.0 || ^3.1",
"doctrine/persistence": "^1.3 || ^2.1",
"friendsofsymfony/user-bundle": "dev-master",
"sonata-project/admin-bundle": "^3.76 || ^4.0",
"sonata-project/datagrid-bundle": "^3.0.1 || ^3.3.0",
"sonata-project/doctrine-extensions": "^1.10.1 || ^1.13.1",
"sonata-project/form-extensions": "^0.1 || ^1.10",
"symfony/config": "^4.4 || ^5.3",
"symfony/console": "^4.4 || ^5.3",
"symfony/dependency-injection": "^4.4 || ^5.3",
"symfony/form": "^4.4 || ^5.3",
"symfony/framework-bundle": "^4.4 || ^5.3",
"symfony/http-foundation": "^4.4 || ^5.3",
"symfony/http-kernel": "^4.4 || ^5.3",
"symfony/mailer": "^4.4 || ^5.3",
"symfony/mime": "^4.4.10 || ^5.3",
"symfony/options-resolver": "^4.4 || ^5.3",
"symfony/security-acl": "^3.0",
"symfony/security-core": "^4.4 || ^5.3",
"symfony/translation": "^4.4 || ^5.3",
"twig/twig": "^2.9 || ^3.0"
},
"conflict": {
"friendsofsymfony/rest-bundle": "<2.1",
"jms/serializer": "<1.3 || >=4.0",
"nelmio/api-doc-bundle": "<2.13",
"sonata-project/core-bundle": "<3.20",
"sonata-project/doctrine-orm-admin-bundle": "<3.0",
"sonata-project/google-authenticator": "<1.0"
},
"require-dev": {
"doctrine/annotations": "^1.10",
"doctrine/doctrine-bundle": "^2.0",
"doctrine/orm": "^2.0",
"egulias/email-validator": "^2.1.9",
"friendsofsymfony/rest-bundle": "^2.1 || ^3.0",
"jms/serializer-bundle": "^1.0 || ^2.0 || ^3.0",
"matthiasnoback/symfony-config-test": "^4.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"nelmio/api-doc-bundle": "^2.13.4 || ^4.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^0.12.84",
"phpstan/phpstan-phpunit": "^0.12.18",
"phpstan/phpstan-symfony": "^0.12.21",
"psalm/plugin-phpunit": "^0.16",
"psalm/plugin-symfony": "^2.0",
"sensio/framework-extra-bundle": "^6.1",
"sonata-project/doctrine-orm-admin-bundle": "^3.18 || ^4.0",
"sonata-project/google-authenticator": "^1.0 || ^2.3",
"symfony/browser-kit": "^4.4 || ^5.3",
"symfony/phpunit-bridge": "^5.3",
"symfony/swiftmailer-bundle": "^3.4",
"vimeo/psalm": "^4.9.2"
},
"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": "For persisting entities",
"sonata-project/google-authenticator": "For google auth user login"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
},
"autoload": {
"psr-4": {
"Sonata\\UserBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sonata\\UserBundle\\Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/simple-phpunit install"
],
"post-update-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/simple-phpunit install"
]
}
}