This commit is contained in:
lubiana 2025-06-18 20:12:54 +02:00
parent 5cb66c5012
commit 9b1e3d98f0
Signed by: lubiana
SSH key fingerprint: SHA256:vW1EA0fRR3Fw+dD/sM0K+x3Il2gSry6YRYHqOeQwrfk
4 changed files with 56 additions and 18 deletions

View file

@ -1,16 +1,56 @@
<?php <?php declare(strict_types=1);
use ApiPlatform\Symfony\Bundle\ApiPlatformBundle;
use Doctrine\Bundle\DoctrineBundle\DoctrineBundle;
use Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle;
use Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle;
use Liip\TestFixturesBundle\LiipTestFixturesBundle;
use Nelmio\CorsBundle\NelmioCorsBundle;
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 Twig\Extra\TwigExtraBundle\TwigExtraBundle;
return [ return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true], FrameworkBundle::class => [
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true], 'all' => true,
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true], ],
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true], MakerBundle::class => [
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true], 'dev' => true,
Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true], ],
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true], DoctrineBundle::class => [
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true], 'all' => true,
Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true], ],
Liip\TestFixturesBundle\LiipTestFixturesBundle::class => ['dev' => true, 'test' => true], DoctrineMigrationsBundle::class => [
ApiPlatform\Symfony\Bundle\ApiPlatformBundle::class => ['all' => true], 'all' => true,
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true], ],
TwigBundle::class => [
'all' => true,
],
DoctrineFixturesBundle::class => [
'dev' => true,
'test' => true,
],
WebProfilerBundle::class => [
'dev' => true,
'test' => true,
],
SecurityBundle::class => [
'all' => true,
],
NelmioCorsBundle::class => [
'all' => true,
],
LiipTestFixturesBundle::class => [
'dev' => true,
'test' => true,
],
ApiPlatformBundle::class => [
'all' => true,
],
TwigExtraBundle::class => [
'all' => true,
],
]; ];

View file

@ -1,6 +1,4 @@
<?php <?php declare(strict_types=1);
declare(strict_types=1);
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;

View file

@ -6,7 +6,7 @@ use Symfony\Config\TwigConfig;
return static function ( return static function (
ContainerConfigurator $containerConfigurator, ContainerConfigurator $containerConfigurator,
TwigConfig $twig, TwigConfig $twig,
): void { ): void {
if ($containerConfigurator->env() === 'test') { if ($containerConfigurator->env() === 'test') {
$twig->strictVariables(true); $twig->strictVariables(true);
} }

View file

@ -1,4 +1,4 @@
<?php <?php declare(strict_types=1);
/** /**
* Returns the importmap for this application. * Returns the importmap for this application.