deblan.io-murph/config/bundles.php

29 lines
1.8 KiB
PHP
Raw Normal View History

<?php
return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
Symfony\Bundle\TwigBundle\TwigBundle::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, 'test' => true],
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
Symfony\WebpackEncoreBundle\WebpackEncoreBundle::class => ['all' => true],
Knp\Bundle\PaginatorBundle\KnpPaginatorBundle::class => ['all' => true],
Scheb\TwoFactorBundle\SchebTwoFactorBundle::class => ['all' => true],
Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle::class => ['all' => true],
App\Core\Bundle\CoreBundle::class => ['all' => true],
App\Bundle\AppBundle::class => ['all' => true],
Knp\Bundle\MarkdownBundle\KnpMarkdownBundle::class => ['all' => true],
Knp\Bundle\MenuBundle\KnpMenuBundle::class => ['all' => true],
2021-03-29 19:40:55 +02:00
FOS\JsRoutingBundle\FOSJsRoutingBundle::class => ['all' => true],
2021-05-13 17:50:05 +02:00
Knp\DoctrineBehaviors\DoctrineBehaviorsBundle::class => ['all' => true],
2021-06-15 11:49:44 +02:00
SPE\FilesizeExtensionBundle\SPEFilesizeExtensionBundle::class => ['all' => true],
2021-06-22 11:06:05 +02:00
Liip\ImagineBundle\LiipImagineBundle::class => ['all' => true],
2022-05-29 21:04:28 +02:00
Gregwar\CaptchaBundle\GregwarCaptchaBundle::class => ['all' => true],
];