mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-06 04:44:19 +01:00
This commit introduces a refactored EliminationFactory for better modularity, updates the elimination preparation process, and adds functionality to view eliminations. Backoffice templates and forms have been reorganized, minor translations were corrected, and additional assets like styles and flashes were included for enhanced user experience.
36 lines
1.5 KiB
PHP
36 lines
1.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Doctrine\Bundle\DoctrineBundle\DoctrineBundle;
|
|
use Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle;
|
|
use Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle;
|
|
use EasyCorp\Bundle\EasyAdminBundle\EasyAdminBundle;
|
|
use Sentry\SentryBundle\SentryBundle;
|
|
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
|
|
use Symfony\Bundle\MakerBundle\MakerBundle;
|
|
use Symfony\Bundle\SecurityBundle\SecurityBundle;
|
|
use Symfony\Bundle\TwigBundle\TwigBundle;
|
|
use Symfony\Bundle\WebProfilerBundle\WebProfilerBundle;
|
|
use Symfony\UX\TwigComponent\TwigComponentBundle;
|
|
use SymfonyCasts\Bundle\VerifyEmail\SymfonyCastsVerifyEmailBundle;
|
|
use Symfonycasts\SassBundle\SymfonycastsSassBundle;
|
|
use Twig\Extra\TwigExtraBundle\TwigExtraBundle;
|
|
|
|
return [
|
|
FrameworkBundle::class => ['all' => true],
|
|
DoctrineBundle::class => ['all' => true],
|
|
DoctrineMigrationsBundle::class => ['all' => true],
|
|
MakerBundle::class => ['dev' => true],
|
|
TwigBundle::class => ['all' => true],
|
|
SecurityBundle::class => ['all' => true],
|
|
WebProfilerBundle::class => ['dev' => true, 'test' => true],
|
|
TwigExtraBundle::class => ['all' => true],
|
|
TwigComponentBundle::class => ['all' => true],
|
|
EasyAdminBundle::class => ['all' => true],
|
|
DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
|
|
SymfonyCastsVerifyEmailBundle::class => ['all' => true],
|
|
SentryBundle::class => ['prod' => true],
|
|
SymfonycastsSassBundle::class => ['all' => true],
|
|
];
|