bundles.php 1.8 KB

123456789101112131415161718192021222324252627282930
  1. <?php
  2. $devEnvs = ['dev' => true, 'docker' => true, 'test' => false, 'staging' => true];
  3. return [
  4. Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
  5. Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
  6. Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
  7. Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
  8. Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
  9. Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true],
  10. ApiPlatform\Symfony\Bundle\ApiPlatformBundle::class => ['all' => true],
  11. Jb\Bundle\PhumborBundle\JbPhumborBundle::class => ['all' => true],
  12. Misd\PhoneNumberBundle\MisdPhoneNumberBundle::class => ['all' => true],
  13. Lexik\Bundle\JWTAuthenticationBundle\LexikJWTAuthenticationBundle::class => ['all' => true],
  14. FOS\ElasticaBundle\FOSElasticaBundle::class => ['all' => true],
  15. Knp\Bundle\SnappyBundle\KnpSnappyBundle::class => ['all' => true],
  16. Knp\Bundle\GaufretteBundle\KnpGaufretteBundle::class => ['all' => true],
  17. Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
  18. Symfony\Bundle\MercureBundle\MercureBundle::class => ['all' => true],
  19. Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
  20. Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => $devEnvs,
  21. Symfony\Bundle\MakerBundle\MakerBundle::class => $devEnvs,
  22. Symfony\Bundle\DebugBundle\DebugBundle::class => $devEnvs,
  23. Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => $devEnvs,
  24. Zenstruck\Foundry\ZenstruckFoundryBundle::class => $devEnvs,
  25. Nelmio\Alice\Bridge\Symfony\NelmioAliceBundle::class => $devEnvs,
  26. Fidry\AliceDataFixtures\Bridge\Symfony\FidryAliceDataFixturesBundle::class => $devEnvs,
  27. Hautelook\AliceBundle\HautelookAliceBundle::class => $devEnvs,
  28. ];