futtern/config/bundles.php
lubiana e2a33be4f9
All checks were successful
/ ls (pull_request) Successful in 25s
/ ls (push) Successful in 25s
reboot
2024-06-10 19:13:51 +02:00

21 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,
],
];