Skip to content

Commit f272957

Browse files
⬆️ Require Symfony 5.4 and remove web server bundle (#3535)
* ⬆️ Require Symfony 5.4 and remode web server bundle * Update composer.json --------- Co-authored-by: Bob van de Vijver <[email protected]>
1 parent 1331dad commit f272957

File tree

2 files changed

+32
-36
lines changed

2 files changed

+32
-36
lines changed

composer.json

Lines changed: 32 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -42,40 +42,39 @@
4242
"sensio/framework-extra-bundle": "^6.2",
4343
"siriusphp/upload": "^3.0.1",
4444
"squirrelphp/twig-php-syntax": "^1.6",
45-
"symfony/asset": "^5.3",
46-
"symfony/cache": "^5.3",
47-
"symfony/console": "^5.3",
48-
"symfony/debug-bundle": "^5.3",
49-
"symfony/dependency-injection": "^5.3",
50-
"symfony/dotenv": "^5.3",
51-
"symfony/error-handler": "^5.3",
52-
"symfony/event-dispatcher": "^5.3",
53-
"symfony/expression-language": "^5.3",
45+
"symfony/asset": "^5.4",
46+
"symfony/cache": "^5.4",
47+
"symfony/console": "^5.4",
48+
"symfony/debug-bundle": "^5.4",
49+
"symfony/dependency-injection": "^5.4",
50+
"symfony/dotenv": "^5.4",
51+
"symfony/error-handler": "^5.4",
52+
"symfony/event-dispatcher": "^5.4",
53+
"symfony/expression-language": "^5.4",
5454
"symfony/flex": "^1.17 || ^2.0",
55-
"symfony/form": "^5.3",
56-
"symfony/framework-bundle": "^5.3",
57-
"symfony/http-client": "^5.3",
58-
"symfony/mailer": "^5.3",
59-
"symfony/mime": "^5.3",
60-
"symfony/monolog-bridge": "^5.3",
55+
"symfony/form": "^5.4",
56+
"symfony/framework-bundle": "^5.4",
57+
"symfony/http-client": "^5.4",
58+
"symfony/mailer": "^5.4",
59+
"symfony/mime": "^5.4",
60+
"symfony/monolog-bridge": "^5.4",
6161
"symfony/monolog-bundle": "^3.7",
62-
"symfony/password-hasher": "^5.3",
62+
"symfony/password-hasher": "^5.4",
6363
"symfony/polyfill-php72": "^1.23",
64-
"symfony/security-bundle": "^5.3",
65-
"symfony/security-csrf": "^5.3",
66-
"symfony/serializer": "^5.3",
67-
"symfony/stopwatch": "^5.3",
68-
"symfony/string": "^5.3",
69-
"symfony/translation": "^5.3",
70-
"symfony/twig-bridge": "^5.3",
71-
"symfony/twig-bundle": "^5.3",
72-
"symfony/validator": "^5.3",
73-
"symfony/var-dumper": "^5.3",
74-
"symfony/var-exporter": "^5.3",
75-
"symfony/web-profiler-bundle": "^5.3",
76-
"symfony/web-server-bundle": "^4.4",
64+
"symfony/security-bundle": "^5.4",
65+
"symfony/security-csrf": "^5.4",
66+
"symfony/serializer": "^5.4",
67+
"symfony/stopwatch": "^5.4",
68+
"symfony/string": "^5.4",
69+
"symfony/translation": "^5.4",
70+
"symfony/twig-bridge": "^5.4",
71+
"symfony/twig-bundle": "^5.4",
72+
"symfony/validator": "^5.4",
73+
"symfony/var-dumper": "^5.4",
74+
"symfony/var-exporter": "^5.4",
75+
"symfony/web-profiler-bundle": "^5.4",
7776
"symfony/webpack-encore-bundle": "^1.12",
78-
"symfony/yaml": "^5.3",
77+
"symfony/yaml": "^5.4",
7978
"symfonycasts/reset-password-bundle": "^1.9",
8079
"tightenco/collect": "^v8.34",
8180
"twig/extra-bundle": "^3.3",
@@ -88,8 +87,6 @@
8887
"xemlock/htmlpurifier-html5": "^0.1.11"
8988
},
9089
"conflict": {
91-
"symfony/dependency-injection": "5.3.7",
92-
"symfony/security-http": "v5.3.0 || v5.3.1",
9390
"doctrine/dbal": "^3.0",
9491
"cocur/slugify": "4.5.0"
9592
},
@@ -114,8 +111,8 @@
114111
"phpstan/phpstan-symfony": "^1.0.1",
115112
"phpunit/phpunit": "^8.5",
116113
"se/selenium-server-standalone": "^3.141",
117-
"symfony/browser-kit": "^5.3",
118-
"symfony/css-selector": "^5.3",
114+
"symfony/browser-kit": "^5.4",
115+
"symfony/css-selector": "^5.4",
119116
"symplify/easy-coding-standard": "^10.0"
120117
},
121118
"config": {
@@ -134,7 +131,7 @@
134131
"public-dir": "public",
135132
"symfony": {
136133
"allow-contrib": true,
137-
"require": "^5.2"
134+
"require": "^5.4"
138135
}
139136
},
140137
"autoload": {

config/bundles.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
1919
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
2020
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'local' => true],
21-
Symfony\Bundle\WebServerBundle\WebServerBundle::class => ['all' => true],
2221
Symfony\WebpackEncoreBundle\WebpackEncoreBundle::class => ['all' => true],
2322
SymfonyCasts\Bundle\ResetPassword\SymfonyCastsResetPasswordBundle::class => ['all' => true],
2423
Translation\Bundle\TranslationBundle::class => ['all' => true],

0 commit comments

Comments
 (0)