bundles.php 1.1 KB

12345678910111213141516171819
  1. <?php
  2. return [
  3. Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
  4. Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
  5. Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
  6. Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
  7. Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
  8. Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true],
  9. ApiPlatform\Symfony\Bundle\ApiPlatformBundle::class => ['all' => true],
  10. Symfony\Bundle\MercureBundle\MercureBundle::class => ['all' => true],
  11. Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
  12. Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
  13. Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
  14. Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
  15. Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
  16. Symfony\UX\TwigComponent\TwigComponentBundle::class => ['all' => true],
  17. EasyCorp\Bundle\EasyAdminBundle\EasyAdminBundle::class => ['all' => true],
  18. ];