buckets/config/bundles.php

15 lines
772 B
PHP
Raw Permalink Normal View History

2026-06-14 20:49:31 +02:00
<?php
return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
2026-06-14 21:55:14 +02:00
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true],
ApiPlatform\Symfony\Bundle\ApiPlatformBundle::class => ['all' => true],
2026-06-17 20:23:15 +02:00
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
2026-06-17 20:54:25 +02:00
DAMA\DoctrineTestBundle\DAMADoctrineTestBundle::class => ['test' => true],
2026-06-18 00:31:49 +02:00
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
2026-06-14 20:49:31 +02:00
];