3snet.test/config/bundles.php

14 lines
723 B
PHP
Raw Normal View History

2022-01-08 10:08:42 +01:00
<?php
return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
2022-01-08 13:15:26 +01:00
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
2024-10-03 14:27:53 +02:00
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
2022-01-08 10:08:42 +01:00
];