webapp/config/bundles.php

12 lines
549 B
PHP
Raw Normal View History

2023-12-04 19:28:33 +00:00
<?php
return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
2023-12-05 02:15:41 +00:00
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
2023-12-06 21:50:54 +00:00
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
2023-12-06 22:14:17 +00:00
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
2023-12-04 19:28:33 +00:00
];