murph-skeleton/config/bundles.php

26 lines
1.6 KiB
PHP
Raw Permalink Normal View History

2021-03-24 12:27:07 +01:00
<?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],
2021-03-24 12:27:07 +01:00
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],
Scheb\TwoFactorBundle\SchebTwoFactorBundle::class => ['all' => true],
Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle::class => ['all' => true],
2021-06-25 11:27:33 +02:00
Knp\Bundle\PaginatorBundle\KnpPaginatorBundle::class => ['all' => true],
2021-05-13 17:49:19 +02:00
Knp\DoctrineBehaviors\DoctrineBehaviorsBundle::class => ['all' => true],
2021-06-25 11:27:33 +02:00
FOS\JsRoutingBundle\FOSJsRoutingBundle::class => ['all' => true],
2021-06-15 11:31:52 +02:00
SPE\FilesizeExtensionBundle\SPEFilesizeExtensionBundle::class => ['all' => true],
2021-06-25 11:27:33 +02:00
Liip\ImagineBundle\LiipImagineBundle::class => ['all' => true],
App\Core\Bundle\CoreBundle::class => ['all' => true],
App\Bundle\AppBundle::class => ['all' => true],
2021-03-24 12:27:07 +01:00
];