]> Raphaël G. Git Repositories - airlibre/commitdiff
Update config bundles
authorRaphaël Gertz <git@rapsys.eu>
Tue, 27 Feb 2024 16:28:21 +0000 (17:28 +0100)
committerRaphaël Gertz <git@rapsys.eu>
Tue, 27 Feb 2024 16:28:21 +0000 (17:28 +0100)
config/bundles.php

index 947feadf9f9ff1f5c1cd24bbff8791d1a2067298..a95c7b835e6be3b63656ed81eedbd93f74d0c945 100644 (file)
@@ -1,17 +1,17 @@
 <?php
 
 return [
+    Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
+    Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
+    Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
+    Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
+    Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
     Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
+    Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
     Rapsys\PackBundle\RapsysPackBundle::class => ['all' => true],
     Rapsys\UserBundle\RapsysUserBundle::class => ['all' => true],
     Rapsys\AirBundle\RapsysAirBundle::class => ['all' => true],
-    Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
-    Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
     Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
-    Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
-    Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
     Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
-    Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
     Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
-    Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
 ];