caisse-bliss/config/bundles.php

17 lines
951 B
PHP
Raw Normal View History

2018-03-13 15:05:52 +01:00
<?php
return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
2023-06-19 12:13:30 +02:00
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
2018-03-13 15:05:52 +01:00
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
2023-06-19 12:13:30 +02:00
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
2018-03-13 15:05:52 +01:00
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
2023-06-19 12:13:30 +02:00
Symfony\WebpackEncoreBundle\WebpackEncoreBundle::class => ['all' => true],
2023-06-20 19:14:19 +02:00
EasyCorp\Bundle\EasyAdminBundle\EasyAdminBundle::class => ['all' => true],
2018-03-13 15:05:52 +01:00
];