Update symfony to 7.2

This commit is contained in:
Tim
2024-12-16 23:47:22 +01:00
parent 13b8091451
commit 3e172b6f1b
7 changed files with 462 additions and 546 deletions

View File

@ -4,6 +4,10 @@
use App\Kernel;
use Symfony\Bundle\FrameworkBundle\Console\Application;
if (!is_dir(dirname(__DIR__).'/vendor')) {
throw new LogicException('Dependencies are missing. Try running "composer install".');
}
if (!is_file(dirname(__DIR__).'/vendor/autoload_runtime.php')) {
throw new LogicException('Symfony Runtime is missing. Try running "composer require symfony/runtime".');
}