Add symfony debugbar with composer require debug command

This commit is contained in:
Krzysztof Płaczek
2024-10-17 17:38:28 +02:00
parent 49338c31b5
commit d4aa0dde32
8 changed files with 618 additions and 2 deletions

View File

@@ -4,4 +4,7 @@ return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
];