2023-10-29 17:01:21 +00:00
|
|
|
<?php
|
|
|
|
|
2024-04-22 18:52:51 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2023-10-29 17:01:21 +00:00
|
|
|
return [
|
|
|
|
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
|
|
|
|
Symfony\WebpackEncoreBundle\WebpackEncoreBundle::class => ['all' => true],
|
|
|
|
Symfony\UX\StimulusBundle\StimulusBundle::class => ['all' => true],
|
|
|
|
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
|
|
|
|
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
|
2024-02-04 04:39:13 +00:00
|
|
|
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
|
|
|
|
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
|
|
|
|
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
|
|
|
|
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
|
|
|
|
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
|
|
|
|
Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
|
2024-04-22 18:52:51 +00:00
|
|
|
DAMA\DoctrineTestBundle\DAMADoctrineTestBundle::class => ['test' => true],
|
2023-10-29 17:01:21 +00:00
|
|
|
];
|