caisse-bliss/nope/config/bundles.php

21 lines
1.3 KiB
PHP
Raw Permalink 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],
2023-06-28 16:16:11 +02:00
Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
2023-06-28 16:19:33 +02:00
Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true],
ApiPlatform\Core\Bridge\Symfony\Bundle\ApiPlatformBundle::class => ['all' => true],
2018-03-13 15:05:52 +01:00
];