22 lines
507 B
PHP
22 lines
507 B
PHP
|
<?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,
|
||
|
],
|
||
|
DoctrineBundle::class => [
|
||
|
'all' => true,
|
||
|
],
|
||
|
DoctrineMigrationsBundle::class => [
|
||
|
'all' => true,
|
||
|
],
|
||
|
];
|