2024-02-05 15:16:43 +00:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
|
|
|
|
use Doctrine\Bundle\DoctrineBundle\DoctrineBundle;
|
|
|
|
use Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
|
|
|
|
use Symfony\Bundle\MakerBundle\MakerBundle;
|
|
|
|
|
|
|
|
return [
|
|
|
|
FrameworkBundle::class => [
|
|
|
|
'all' => true,
|
|
|
|
],
|
|
|
|
MakerBundle::class => [
|
|
|
|
'dev' => true,
|
|
|
|
],
|
2024-06-09 14:43:34 +00:00
|
|
|
DoctrineBundle::class => [
|
2024-02-05 15:16:43 +00:00
|
|
|
'all' => true,
|
|
|
|
],
|
2024-06-09 14:43:34 +00:00
|
|
|
DoctrineMigrationsBundle::class => [
|
|
|
|
'all' => true,
|
2024-02-05 15:16:43 +00:00
|
|
|
],
|
|
|
|
];
|