|
@@ -1,7 +1,5 @@
|
|
|
<?php
|
|
<?php
|
|
|
|
|
|
|
|
-$devEnvs = ['dev' => true, 'docker' => true, 'test' => false, 'staging' => true];
|
|
|
|
|
-
|
|
|
|
|
return [
|
|
return [
|
|
|
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
|
|
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
|
|
|
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
|
|
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
|
|
@@ -19,12 +17,13 @@ return [
|
|
|
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
|
|
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
|
|
|
Symfony\Bundle\MercureBundle\MercureBundle::class => ['all' => true],
|
|
Symfony\Bundle\MercureBundle\MercureBundle::class => ['all' => true],
|
|
|
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
|
|
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => 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,
|
|
|
|
|
|
|
+ Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'docker' => true, 'test' => false, 'staging' => true],
|
|
|
|
|
+ Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true, 'docker' => true, 'test' => false, 'staging' => true],
|
|
|
|
|
+ Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true, 'docker' => true, 'test' => false, 'staging' => true],
|
|
|
|
|
+ Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'docker' => true, 'test' => false, 'staging' => true],
|
|
|
|
|
+ Zenstruck\Foundry\ZenstruckFoundryBundle::class => ['dev' => true, 'docker' => true, 'test' => false, 'staging' => true],
|
|
|
|
|
+ Nelmio\Alice\Bridge\Symfony\NelmioAliceBundle::class => ['dev' => true, 'docker' => true, 'test' => false, 'staging' => true],
|
|
|
|
|
+ Fidry\AliceDataFixtures\Bridge\Symfony\FidryAliceDataFixturesBundle::class => ['dev' => true, 'docker' => true, 'test' => false, 'staging' => true],
|
|
|
|
|
+ Hautelook\AliceBundle\HautelookAliceBundle::class => ['dev' => true, 'docker' => true, 'test' => false, 'staging' => true],
|
|
|
|
|
+ Liip\ImagineBundle\LiipImagineBundle::class => ['all' => true],
|
|
|
];
|
|
];
|