bundles.php 2.2 KB

12345678910111213141516171819202122232425262728
  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. Jb\Bundle\PhumborBundle\JbPhumborBundle::class => ['all' => true],
  11. Misd\PhoneNumberBundle\MisdPhoneNumberBundle::class => ['all' => true],
  12. Lexik\Bundle\JWTAuthenticationBundle\LexikJWTAuthenticationBundle::class => ['all' => true],
  13. Knp\Bundle\SnappyBundle\KnpSnappyBundle::class => ['all' => true],
  14. Knp\Bundle\GaufretteBundle\KnpGaufretteBundle::class => ['all' => true],
  15. Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
  16. Symfony\Bundle\MercureBundle\MercureBundle::class => ['all' => true],
  17. Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
  18. Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'docker' => true, 'test' => false, 'staging' => true],
  19. Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true, 'docker' => true, 'test' => false, 'staging' => true],
  20. Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true, 'docker' => true, 'test' => false, 'staging' => true],
  21. Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'docker' => true, 'test' => false, 'staging' => true],
  22. Zenstruck\Foundry\ZenstruckFoundryBundle::class => ['dev' => true, 'docker' => true, 'test' => false, 'staging' => true],
  23. Nelmio\Alice\Bridge\Symfony\NelmioAliceBundle::class => ['dev' => true, 'docker' => true, 'test' => false, 'staging' => true],
  24. Fidry\AliceDataFixtures\Bridge\Symfony\FidryAliceDataFixturesBundle::class => ['dev' => true, 'docker' => true, 'test' => false, 'staging' => true],
  25. Hautelook\AliceBundle\HautelookAliceBundle::class => ['dev' => true, 'docker' => true, 'test' => false, 'staging' => true],
  26. Liip\ImagineBundle\LiipImagineBundle::class => ['all' => true],
  27. ];