-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.27 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.27 KB
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
{
"name": "damienharper/user-bundle",
"type": "symfony-bundle",
"description": "User Bundle",
"keywords": ["user", "user management"],
"license": "MIT",
"authors": [
{
"name": "Damien Harper",
"email": "damien.harper@gmail.com"
}
],
"require": {
"php": "^7.3",
"doctrine/orm": "^2.7",
"symfony/form": "^4.3|^5.0",
"symfony/framework-bundle": "^4.3|^5.0",
"symfony/mailer": "^4.3|^5.0",
"symfony/routing": "^4.3|^5.0",
"symfony/security-bundle": "^4.3|^5.0",
"symfony/twig-bundle": "^4.3|^5.0",
"twig/twig": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-doctrine": "^0.12",
"phpstan/phpstan-symfony": "^0.12",
"symfony/validator": "^4.3|^5.0"
},
"config": {
"sort-packages": true
},
"suggest": {
"scheb/two-factor-bundle": "Two factor authentication bundle",
"symfony/validator": "To use validation on ExtendedUserTrait"
},
"autoload": {
"psr-4": {
"DH\\UserBundle\\": "src/UserBundle"
}
},
"conflict": {
"doctrine/persistence": "<1.3"
},
"scripts": {
"csfixer": "vendor/bin/php-cs-fixer fix --config=.php_cs --using-cache=no --verbose",
"phpstan": "vendor/bin/phpstan analyse src"
}
}