From 91f91c20fa3993af06a3dc9c5f91261245666e2f Mon Sep 17 00:00:00 2001 From: Brock H Caldwell Date: Sun, 8 Mar 2026 18:36:03 -0500 Subject: [PATCH] fix: pins doctrine to prod, dev, & test envs --- config/bundles.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/bundles.php b/config/bundles.php index ab99b0d..8df3874 100644 --- a/config/bundles.php +++ b/config/bundles.php @@ -11,7 +11,7 @@ return [ OneToMany\RichBundle\RichBundle::class => ['all' => true], Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true], Symfony\UX\StimulusBundle\StimulusBundle::class => ['all' => true], - Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true], + Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['prod' => true, 'dev' => true, 'test' => true], Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true], Symfony\UX\LiveComponent\LiveComponentBundle::class => ['all' => true], Symfony\Bundle\MercureBundle\MercureBundle::class => ['all' => true],