Feat: Aktualisiert Symfony auf Version 8.1 und passt Abhängigkeiten an

This commit is contained in:
2026-06-10 21:58:04 +02:00
parent ec139f9844
commit 89f29d60c0
5 changed files with 30 additions and 18 deletions
+13 -4
View File
@@ -1,10 +1,19 @@
# Diese Datei enthält sichere Standardwerte für die Entwicklung.
# Für lokale Überschreibungen: .env.local erstellen (wird nicht eingecheckt).
APP_ENV=dev
APP_DEBUG=true
APP_SECRET=!ChangeThisToARandomSecret!
###> symfony/cache ###
REDIS_URL=redis://localhost:6379
###< symfony/cache ###
###> symfony/framework-bundle ###
APP_ENV=dev
APP_DEBUG=true
APP_SECRET=
APP_SHARE_DIR=var/share
###< symfony/framework-bundle ###
###> symfony/routing ###
# Configure how to generate URLs in non-HTTP contexts, such as CLI commands.
# See https://symfony.com/doc/current/routing.html#generating-urls-in-commands
DEFAULT_URI=http://localhost
###< symfony/routing ###
+1 -1
View File
@@ -7,7 +7,7 @@ Symfony 7.2 Projekttemplate mit Podman-Containern für Entwicklung und Produktio
| Komponente | Version |
|------------|---------|
| PHP-FPM | 8.4 |
| Symfony | 7.2 |
| Symfony | 8.1 |
| Nginx | 1.27 |
| Redis | 8 |
+12 -11
View File
@@ -10,19 +10,20 @@
"ext-ctype": "*",
"ext-iconv": "*",
"ext-redis": "*",
"symfony/cache": "7.2.*",
"symfony/console": "7.2.*",
"symfony/dotenv": "7.2.*",
"symfony/cache": "8.1.*",
"symfony/console": "8.1.*",
"symfony/dotenv": "8.1.*",
"symfony/flex": "^2",
"symfony/framework-bundle": "7.2.*",
"symfony/runtime": "7.2.*",
"symfony/yaml": "7.2.*"
"symfony/framework-bundle": "8.1.*",
"symfony/runtime": "8.1.*",
"symfony/yaml": "8.1.*"
},
"require-dev": {
"symfony/debug-bundle": "7.2.*",
"symfony/maker-bundle": "^1.0",
"symfony/profiler-pack": "^1.0",
"symfony/var-dumper": "7.2.*"
"symfony/debug-bundle": "8.1.*",
"symfony/maker-bundle": "^1.67",
"symfony/stopwatch": "8.1.*",
"symfony/var-dumper": "8.1.*",
"symfony/web-profiler-bundle": "8.1.*"
},
"config": {
"allow-plugins": {
@@ -57,7 +58,7 @@
"extra": {
"symfony": {
"allow-contrib": false,
"require": "7.2.*"
"require": "8.1.*"
}
}
}
+2
View File
@@ -4,4 +4,6 @@ return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true, 'test' => true],
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
];
+2 -2
View File
@@ -1,8 +1,8 @@
when@dev:
web_profiler_wdt:
resource: '@WebProfilerBundle/Resources/config/routing/wdt.xml'
resource: '@WebProfilerBundle/Resources/config/routing/wdt.php'
prefix: /_wdt
web_profiler_profiler:
resource: '@WebProfilerBundle/Resources/config/routing/profiler.xml'
resource: '@WebProfilerBundle/Resources/config/routing/profiler.php'
prefix: /_profiler