forked from sumocoders/FrameworkCoreBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.33 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
{
"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": "[email protected]"
},
{
"name": "Bruno Vitorino",
"email": "[email protected]"
},
{
"name": "Sander De la Marche",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0",
"gedmo/doctrine-extensions": "^3",
"friendsofsymfony/jsrouting-bundle": "^3",
"knplabs/knp-menu-bundle": "^3.0",
"symfony/form": "^6.2",
"symfony/asset": "^6.2",
"symfony/console": "^6.2",
"symfony/security-bundle": "^6.2",
"symfony/translation": "^6.2",
"symfony/twig-bundle": "^6.2",
"twig/inky-extra": "^3.3",
"twig/cssinliner-extra": "^3.3",
"twig/extra-bundle": "^3.3"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"symfony/phpunit-bridge": "^6.2",
"friendsoftwig/twigcs": "^6.0",
"symfony/maker-bundle": "^1.0"
},
"autoload": {
"psr-4": {
"SumoCoders\\FrameworkCoreBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SumoCoders\\FrameworkCoreBundle\\Tests\\": "tests/"
}
}
}