magnetico-web/config/bundles.php

18 lines
998 B
PHP
Raw Normal View History

2018-06-20 16:35:08 +00:00
<?php
declare(strict_types=1);
2018-06-20 16:35:08 +00:00
return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
2018-06-20 18:07:16 +00:00
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
2020-07-05 00:38:23 +00:00
BabDev\PagerfantaBundle\BabDevPagerfantaBundle::class => ['all' => true],
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
2018-06-23 13:59:16 +00:00
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
2018-06-23 15:00:37 +00:00
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
Sentry\SentryBundle\SentryBundle::class => ['all' => true],
EWZ\Bundle\RecaptchaBundle\EWZRecaptchaBundle::class => ['all' => true],
2022-07-05 21:21:41 +00:00
Baldinof\RoadRunnerBundle\BaldinofRoadRunnerBundle::class => ['all' => true],
2018-06-20 16:35:08 +00:00
];