Skip to content

Commit fc244a9

Browse files
committed
Update config/bundles.php content
1 parent ef45279 commit fc244a9

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

bundles.rst

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,17 @@ file::
2222
return [
2323
// 'all' means that the bundle is enabled for any Symfony environment
2424
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],
2825
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],
2930
// this bundle is enabled only in 'dev' and 'test', so you can't use it in 'prod'
3031
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],
3136
];
3237

3338
.. tip::

0 commit comments

Comments
 (0)