diff --git a/config/bundles.php b/config/bundles.php index a93300e..1bc42c7 100644 --- a/config/bundles.php +++ b/config/bundles.php @@ -1,11 +1,36 @@ ['all' => true], - Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true], - Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true], - Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true], - Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true], - Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true], - Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true], + FrameworkBundle::class => [ + 'all' => true, + ], + TwigBundle::class => [ + 'all' => true, + ], + DoctrineBundle::class => [ + 'all' => true, + ], + DoctrineMigrationsBundle::class => [ + 'all' => true, + ], + MakerBundle::class => [ + 'dev' => true, + ], + WebProfilerBundle::class => [ + 'dev' => true, + 'test' => true, + ], + TwigExtraBundle::class => [ + 'all' => true, + ], ]; diff --git a/importmap.php b/importmap.php index bb0c99c..fbddf9e 100644 --- a/importmap.php +++ b/importmap.php @@ -1,5 +1,7 @@