-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.08 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
{
"name": "enigma972/user-bundle",
"description": "A Symfony user bundle.",
"version": "v0.4.3",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Joel Lusavuvu",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4",
"ext-pdo_sqlite": "*",
"symfony/swiftmailer-bundle": "^3.4",
"symfony/security-bundle": "4.4.*",
"symfony/twig-pack": "^1.0",
"symfony/orm-pack": "^1.0"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.3",
"liip/test-fixtures-bundle": "^1.0.0",
"symfony/debug-pack": "*",
"symfony/maker-bundle": "^1.0",
"symfony/profiler-pack": "*",
"symfony/test-pack": "*"
},
"autoload": {
"psr-4": {
"Enigma972\\UserBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Enigma972\\UserBundle\\Tests\\": "tests/"
}
},
"extra": {
"symfony": {
"require": "^4.4"
}
}
}