futtern/config/bundles.php

22 lines
507 B
PHP
Raw Normal View History

2024-02-05 16:16:43 +01: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 16:43:34 +02:00
DoctrineBundle::class => [
2024-02-05 16:16:43 +01:00
'all' => true,
],
2024-06-09 16:43:34 +02:00
DoctrineMigrationsBundle::class => [
'all' => true,
2024-02-05 16:16:43 +01:00
],
];