futtern/config/bundles.php

53 lines
1.3 KiB
PHP
Raw Normal View History

2024-06-10 20:23:36 +02:00
<?php declare(strict_types=1);
2025-02-02 21:15:07 +01:00
use ApiPlatform\Symfony\Bundle\ApiPlatformBundle;
2024-06-10 20:23:36 +02:00
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;
2025-02-06 20:35:49 +01:00
use Liip\TestFixturesBundle\LiipTestFixturesBundle;
2025-02-02 21:15:07 +01:00
use Nelmio\CorsBundle\NelmioCorsBundle;
2024-06-10 20:23:36 +02:00
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
use Symfony\Bundle\MakerBundle\MakerBundle;
2025-02-02 21:15:07 +01:00
use Symfony\Bundle\SecurityBundle\SecurityBundle;
2024-06-10 20:23:36 +02:00
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,
],
2025-02-02 21:15:07 +01:00
SecurityBundle::class => [
'all' => true,
],
NelmioCorsBundle::class => [
'all' => true,
],
ApiPlatformBundle::class => [
'all' => true,
],
2025-02-06 20:35:49 +01:00
LiipTestFixturesBundle::class => [
'dev' => true,
'test' => true,
],
2024-06-10 19:16:55 +02:00
];