forked from FriendsOfSymfony/FOSUserBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.69 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
{
"name": "pouyasoft_ir/user-bundle",
"type": "symfony-bundle",
"description": "Symfony FOSUserBundle",
"keywords": [
"User management"
],
"homepage": "http://friendsofsymfony.github.com",
"license": "MIT",
"authors": [
{
"name": "Christophe Coevoet",
"email": "[email protected]"
},
{
"name": "Thibault Duplessis"
},
{
"name": "FriendsOfSymfony Community",
"homepage": "https://github.com/friendsofsymfony/FOSUserBundle/contributors"
}
],
"require": {
"php": ">=7.2.5",
"paragonie/random_compat": "^1 || ^2 || ^9",
"symfony/form": "^5.1",
"symfony/framework-bundle": "^5.1",
"symfony/security-bundle": "^5.1",
"symfony/translation": "^5.1",
"symfony/twig-bundle": "^5.1",
"symfony/validator": "^5.1",
"twig/twig": "^3.0"
},
"conflict": {
"doctrine/doctrine-bundle": "<1.3",
"symfony/doctrine-bridge": "<2.7"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.1",
"friendsofphp/php-cs-fixer": "^2.2",
"symfony/mailer": "5.1.*",
"symfony/console": "^5.1",
"symfony/yaml": "^5.1"
},
"config": {
"sort-packages": true
},
"extra": {
},
"autoload": {
"psr-4": {
"FOS\\UserBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"FOS\\UserBundle\\Tests\\": "/Tests/"
}
},
"support": {
"docs": "https://symfony.com/doc/master/bundles/FOSUserBundle/index.html"
}
}