pflaenz.li-Symfony/config/bundles.php

15 lines
809 B
PHP
Raw Normal View History

2021-04-22 12:44:17 +02:00
<?php
return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
2021-04-22 12:46:14 +02:00
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
2021-04-22 14:42:22 +02:00
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
2021-04-22 14:43:49 +02:00
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
2021-04-22 14:46:36 +02:00
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
2021-04-22 15:03:39 +02:00
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
2021-04-22 15:04:36 +02:00
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true, 'test' => true],
2021-04-22 12:44:17 +02:00
];