From f731b46f862f639f23c270d69bc04a47706910d8 Mon Sep 17 00:00:00 2001 From: lubiana Date: Sun, 15 Jun 2025 12:57:18 +0200 Subject: [PATCH] fixi --- config/bundles.php | 56 +++++++++++++++++++++++++------ config/packages/csrf.php | 4 +-- config/packages/property_info.php | 4 +-- src/Entity/FoodOrder.php | 3 -- src/Entity/FoodVendor.php | 1 - src/Entity/MenuItem.php | 1 - src/Entity/OrderItem.php | 1 - tests/Pest.php | 1 - 8 files changed, 47 insertions(+), 24 deletions(-) diff --git a/config/bundles.php b/config/bundles.php index cee043f..7e02dfa 100644 --- a/config/bundles.php +++ b/config/bundles.php @@ -1,14 +1,48 @@ - ['all' => true], - Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true], - Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true], - Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true], - Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true], - Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true], - Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true], - Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true], - Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true], - Liip\TestFixturesBundle\LiipTestFixturesBundle::class => ['dev' => true, 'test' => true], + FrameworkBundle::class => [ + 'all' => true, + ], + MakerBundle::class => [ + 'dev' => true, + ], + DoctrineBundle::class => [ + 'all' => true, + ], + DoctrineMigrationsBundle::class => [ + 'all' => true, + ], + TwigBundle::class => [ + 'all' => true, + ], + DoctrineFixturesBundle::class => [ + 'dev' => true, + 'test' => true, + ], + WebProfilerBundle::class => [ + 'dev' => true, + 'test' => true, + ], + SecurityBundle::class => [ + 'all' => true, + ], + NelmioCorsBundle::class => [ + 'all' => true, + ], + LiipTestFixturesBundle::class => [ + 'dev' => true, + 'test' => true, + ], ]; diff --git a/config/packages/csrf.php b/config/packages/csrf.php index bd97e0d..82d6a65 100644 --- a/config/packages/csrf.php +++ b/config/packages/csrf.php @@ -1,6 +1,4 @@ -