|
|
@@ -1,9 +1,10 @@
|
|
|
<?php
|
|
|
|
|
|
+$devEnvs = ['dev' => true, 'docker' => true, 'test' => true, 'staging' => true];
|
|
|
+
|
|
|
return [
|
|
|
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
|
|
|
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
|
|
|
- Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'docker' => true, 'test' => true, 'staging' => true],
|
|
|
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
|
|
|
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
|
|
|
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
|
|
|
@@ -12,17 +13,18 @@ return [
|
|
|
Jb\Bundle\PhumborBundle\JbPhumborBundle::class => ['all' => true],
|
|
|
Misd\PhoneNumberBundle\MisdPhoneNumberBundle::class => ['all' => true],
|
|
|
Lexik\Bundle\JWTAuthenticationBundle\LexikJWTAuthenticationBundle::class => ['all' => true],
|
|
|
- Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true, 'docker' => true, 'staging' => true],
|
|
|
FOS\ElasticaBundle\FOSElasticaBundle::class => ['all' => true],
|
|
|
Knp\Bundle\SnappyBundle\KnpSnappyBundle::class => ['all' => true],
|
|
|
Knp\Bundle\GaufretteBundle\KnpGaufretteBundle::class => ['all' => true],
|
|
|
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
|
|
|
- Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true, 'docker' => true, 'test' => true, 'staging' => true],
|
|
|
Symfony\Bundle\MercureBundle\MercureBundle::class => ['all' => true],
|
|
|
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
|
|
|
- Nelmio\Alice\Bridge\Symfony\NelmioAliceBundle::class => ['dev' => true, 'staging' => true],
|
|
|
- Fidry\AliceDataFixtures\Bridge\Symfony\FidryAliceDataFixturesBundle::class => ['staging' => true],
|
|
|
- Hautelook\AliceBundle\HautelookAliceBundle::class => ['staging' => true],
|
|
|
- Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['staging' => true],
|
|
|
- Zenstruck\Foundry\ZenstruckFoundryBundle::class => ['staging' => true],
|
|
|
+ Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => $devEnvs,
|
|
|
+ Symfony\Bundle\MakerBundle\MakerBundle::class => $devEnvs,
|
|
|
+ Symfony\Bundle\DebugBundle\DebugBundle::class => $devEnvs,
|
|
|
+ Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => $devEnvs,
|
|
|
+ Zenstruck\Foundry\ZenstruckFoundryBundle::class => $devEnvs,
|
|
|
+ Nelmio\Alice\Bridge\Symfony\NelmioAliceBundle::class => $devEnvs,
|
|
|
+ Fidry\AliceDataFixtures\Bridge\Symfony\FidryAliceDataFixturesBundle::class => $devEnvs,
|
|
|
+ Hautelook\AliceBundle\HautelookAliceBundle::class => $devEnvs,
|
|
|
];
|