collection-crud/config/bundles.php

13 lines
804 B
PHP
Raw Normal View History

2022-03-03 10:53:48 -05:00
<?php declare(strict_types=1);
2017-11-30 15:06:13 -05:00
return [
2022-03-03 10:53:48 -05:00
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
2018-07-23 09:52:00 -04:00
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
2017-11-30 15:06:13 -05:00
];