-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.46 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.46 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
51
52
53
54
55
56
57
58
{
"name": "sumocoders/framework-core-bundle",
"type": "symfony-bundle",
"description": "The core bundle for our mini-framework",
"keywords": ["Symfony", "SumoCoders"],
"license": "MIT",
"authors": [
{
"name": "Tijs Verkoyen",
"email": "tijs@sumocoders.be"
},
{
"name": "Bruno Vitorino",
"email": "bruno@sumocoders.be"
},
{
"name": "Sander De la Marche",
"email": "sander@sumocoders.be"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.5",
"gedmo/doctrine-extensions": "^3.17",
"knplabs/knp-menu-bundle": "^3.4",
"symfony/form": "^8.0",
"symfony/asset": "^8.0",
"symfony/console": "^8.0",
"symfony/security-bundle": "^8.0",
"symfony/translation": "^8.0",
"symfony/twig-bundle": "^8.0",
"twig/inky-extra": "^3.16",
"twig/cssinliner-extra": "^3.16",
"twig/extra-bundle": "^3.16",
"symfony/ux-autocomplete": "^2.22",
"doctrine/doctrine-bundle": "^3.2",
"doctrine/orm": "^3.3",
"symfony/doctrine-messenger": "^8.0",
"symfony/intl": "^8.0",
"nelmio/security-bundle": "^3.7"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"symfony/phpunit-bridge": "^8.0",
"symfony/maker-bundle": "^1.61"
},
"autoload": {
"psr-4": {
"SumoCoders\\FrameworkCoreBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SumoCoders\\FrameworkCoreBundle\\Tests\\": "tests/"
}
}
}