symfony_example_app/config/bundles.php

9 lines
337 B
PHP
Raw Permalink Normal View History

2024-01-16 15:54:06 +00:00
<?php
return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
2024-01-16 19:43:18 +00:00
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
2024-01-17 09:21:43 +00:00
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
2024-01-16 15:54:06 +00:00
];