@@ -22,12 +22,17 @@ file::
22
22
return [
23
23
// 'all' means that the bundle is enabled for any Symfony environment
24
24
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
25
- Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
26
- Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
27
- Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
28
25
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
26
+ Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
27
+ // this bundle is enabled only in 'dev'
28
+ Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
29
+ Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
29
30
// this bundle is enabled only in 'dev' and 'test', so you can't use it in 'prod'
30
31
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
32
+ Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
33
+ Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
34
+ Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
35
+ Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
31
36
];
32
37
33
38
.. tip ::
0 commit comments