fediplan/config/bundles.php

17 lines
901 B
PHP
Raw Normal View History

2019-08-08 17:29:59 +02:00
<?php
return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
2024-05-07 17:15:33 +02:00
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
2019-08-08 17:29:59 +02:00
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
2024-05-07 17:15:33 +02:00
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
2019-08-08 17:29:59 +02:00
FOS\JsRoutingBundle\FOSJsRoutingBundle::class => ['all' => true],
Craue\FormFlowBundle\CraueFormFlowBundle::class => ['all' => true],
2024-05-07 17:15:33 +02:00
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
Symfony\UX\StimulusBundle\StimulusBundle::class => ['all' => true],
Symfony\UX\Turbo\TurboBundle::class => ['all' => true],
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
2019-08-08 17:29:59 +02:00
];