Website/app/config/bundles.php

22 lines
1.3 KiB
PHP
Raw Normal View History

2023-10-29 17:01:21 +00: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-12 22:56:04 +00:00
Symfony\UX\StimulusBundle\StimulusBundle::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],
2024-07-12 22:56:04 +00:00
Vich\UploaderBundle\VichUploaderBundle::class => ['all' => true],
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
Presta\SitemapBundle\PrestaSitemapBundle::class => ['all' => true],
2024-07-14 14:26:52 +00:00
Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true],
2024-07-20 06:38:12 +00:00
Symfony\UX\TwigComponent\TwigComponentBundle::class => ['all' => true],
Symfony\UX\Icons\UXIconsBundle::class => ['all' => true],
2023-10-29 17:01:21 +00:00
];