2024-06-10 20:23:36 +02:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
|
|
|
|
use Doctrine\Bundle\DoctrineBundle\DoctrineBundle;
|
2025-01-25 02:14:39 +01:00
|
|
|
use Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle;
|
2024-06-10 20:23:36 +02:00
|
|
|
use Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
|
|
|
|
use Symfony\Bundle\MakerBundle\MakerBundle;
|
|
|
|
use Symfony\Bundle\TwigBundle\TwigBundle;
|
2025-01-25 02:14:39 +01:00
|
|
|
use Symfony\Bundle\WebProfilerBundle\WebProfilerBundle;
|
2024-06-10 19:16:55 +02:00
|
|
|
|
|
|
|
return [
|
2024-06-10 20:23:36 +02:00
|
|
|
FrameworkBundle::class => [
|
|
|
|
'all' => true,
|
|
|
|
],
|
|
|
|
MakerBundle::class => [
|
|
|
|
'dev' => true,
|
|
|
|
],
|
|
|
|
DoctrineBundle::class => [
|
|
|
|
'all' => true,
|
|
|
|
],
|
|
|
|
DoctrineMigrationsBundle::class => [
|
|
|
|
'all' => true,
|
|
|
|
],
|
|
|
|
TwigBundle::class => [
|
|
|
|
'all' => true,
|
|
|
|
],
|
2025-01-25 02:14:39 +01:00
|
|
|
DoctrineFixturesBundle::class => [
|
|
|
|
'dev' => true,
|
|
|
|
'test' => true,
|
|
|
|
],
|
|
|
|
WebProfilerBundle::class => [
|
|
|
|
'dev' => true,
|
|
|
|
'test' => true,
|
|
|
|
],
|
2024-06-10 19:16:55 +02:00
|
|
|
];
|