Website/config/bundles.php

23 lines
1.3 KiB
PHP
Raw Normal View History

2023-10-29 18:01:21 +01:00
<?php
return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
Symfony\WebpackEncoreBundle\WebpackEncoreBundle::class => ['all' => true],
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
2024-07-13 00:56:04 +02:00
Symfony\UX\StimulusBundle\StimulusBundle::class => ['all' => true],
2024-02-04 05:39:13 +01: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 20:52:51 +02:00
DAMA\DoctrineTestBundle\DAMADoctrineTestBundle::class => ['test' => true],
2024-07-13 00:56:04 +02:00
Vich\UploaderBundle\VichUploaderBundle::class => ['all' => true],
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
Presta\SitemapBundle\PrestaSitemapBundle::class => ['all' => true],
2024-07-14 16:26:52 +02:00
Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true],
2024-07-30 05:36:45 +02:00
Symfony\UX\TwigComponent\TwigComponentBundle::class => ['all' => true],
Symfony\UX\Icons\UXIconsBundle::class => ['all' => true],
Symfony\UX\Swup\SwupBundle::class => ['all' => true],
2023-10-29 18:01:21 +01:00
];