mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-06 12:44:20 +01:00
* Some tests * More tests! * Tests 3 * Move getScores from Candidate to Quiz * Add some suggestions for future refactoring * - **Add Gedmo doctrine-extensions and Stof bundle integration** - Added `stof/doctrine-extensions-bundle` and `gedmo/doctrine-extensions` dependencies. - Integrated `Timestampable` behavior for `Created` fields in entities. - Updated `bundles.php` to register StofDoctrineExtensionsBundle. - Added configuration for the Stof bundle. - Simplified `SeasonVoter` with `match` expression and added new tests. - Minor fixes and adjustments across various files. * WIP * All the tests * Base64 tests * Symfomny 7.4.0 * Update * Update recipe * PHP 8.5 * Rector changes * More 8.5 * Things
40 lines
1.7 KiB
PHP
40 lines
1.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use DAMA\DoctrineTestBundle\DAMADoctrineTestBundle;
|
|
use Doctrine\Bundle\DoctrineBundle\DoctrineBundle;
|
|
use Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle;
|
|
use Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle;
|
|
use Sentry\SentryBundle\SentryBundle;
|
|
use Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle;
|
|
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\StimulusBundle\StimulusBundle;
|
|
use Symfony\UX\Turbo\TurboBundle;
|
|
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],
|
|
DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
|
|
SymfonyCastsVerifyEmailBundle::class => ['all' => true],
|
|
SentryBundle::class => ['prod' => true],
|
|
SymfonycastsSassBundle::class => ['all' => true],
|
|
StimulusBundle::class => ['all' => true],
|
|
TurboBundle::class => ['all' => true],
|
|
DAMADoctrineTestBundle::class => ['test' => true],
|
|
StofDoctrineExtensionsBundle::class => ['all' => true],
|
|
];
|