We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e922c9e commit 4b0dd17Copy full SHA for 4b0dd17
bundles.rst
@@ -32,7 +32,15 @@ file::
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],
+ // ...
36
+
37
+ // this bundle is enabled only in 'dev'
38
+ Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
39
40
41
+ // this bundle is enabled only in 'dev' and 'test', so you can't use it in 'prod'
42
+ Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
43
44
];
45
46
.. tip::
0 commit comments