symfony_example_app/config/bundles.php

10 lines
411 B
PHP
Raw 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-17 23:46:20 +00:00
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
2024-01-16 15:54:06 +00:00
];