Skip to content

Commit 4b0dd17

Browse files
smnandrewouterj
andauthored
Show partial bundles.php to improve focus
Co-authored-by: Wouter de Jong <wouterj@users.noreply.github.com>
1 parent e922c9e commit 4b0dd17

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

bundles.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,15 @@ file::
3232
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
3333
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
3434
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
35-
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
35+
// ...
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+
// ...
3644
];
3745

3846
.. tip::

0 commit comments

Comments
 (0)