start_sf5_project_reboot/app/config/bundles.php

14 lines
741 B
PHP
Raw Normal View History

2021-04-17 20:56:03 +00:00
<?php
return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
2021-04-17 20:59:26 +00:00
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
2022-10-01 15:50:16 +00:00
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
2021-04-17 20:59:26 +00:00
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
2021-04-17 21:15:30 +00:00
Symfony\WebpackEncoreBundle\WebpackEncoreBundle::class => ['all' => true],
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
2021-04-17 20:56:03 +00:00
];