bundles.php 1.8 KB

12345678910111213141516171819202122232425
  1. <?php
  2. declare(strict_types = 1);
  3. return [
  4. Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
  5. Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
  6. Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
  7. Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
  8. Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
  9. Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
  10. Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
  11. Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
  12. Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
  13. Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
  14. Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
  15. SymfonyCasts\Bundle\VerifyEmail\SymfonyCastsVerifyEmailBundle::class => ['all' => true],
  16. Misd\PhoneNumberBundle\MisdPhoneNumberBundle::class => ['all' => true],
  17. HtmlSanitizer\Bundle\HtmlSanitizerBundle::class => ['all' => true],
  18. Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
  19. SymfonyCasts\Bundle\ResetPassword\SymfonyCastsResetPasswordBundle::class => ['all' => true],
  20. Knp\Bundle\TimeBundle\KnpTimeBundle::class => ['all' => true],
  21. Fidry\PsyshBundle\PsyshBundle::class => ['all' => true],
  22. ];