-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
59 lines (59 loc) · 1.65 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
{
"name": "umbrella/corebundle",
"type": "symfony-bundle",
"description": "Umbrella Core Symfony bundle.",
"keywords": [
"core",
"umbrella"
],
"homepage": "https://github.com/acantepie/umbrella",
"license": "MIT",
"authors": [
{
"name": "Adrien Cantepie",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"doctrine/doctrine-bundle": "^2.5",
"doctrine/orm": "^2.10",
"symfony/asset": "^6.0",
"symfony/config": "^6.0",
"symfony/console": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/event-dispatcher": "^6.0",
"symfony/form": "^6.0",
"symfony/http-foundation": "^6.0",
"symfony/http-kernel": "^6.0",
"symfony/options-resolver": "^6.0",
"symfony/property-access": "^6.0",
"symfony/routing": "^6.0",
"symfony/translation": "^6.0",
"symfony/twig-bundle": "^6.0",
"symfony/validator": "^6.0",
"symfony/yaml": "^6.0"
},
"require-dev": {
"symfony/framework-bundle": "^6.0",
"symfony/phpunit-bridge": "^6.0"
},
"suggest": {
"symfony/monolog-bundle": "Symfony logger, used on Indexer for example."
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Umbrella\\CoreBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Umbrella\\CoreBundle\\Tests\\": "tests/",
"Umbrella\\CoreBundle\\Tests\\TestApp\\": "tests/TestApplication/app/src/"
}
}
}