bundles.php 879 B

123456789101112131415
  1. <?php
  2. return [
  3. Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
  4. Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
  5. Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
  6. Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
  7. Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true, 'test' => true],
  8. Symfony\WebpackEncoreBundle\WebpackEncoreBundle::class => ['all' => true],
  9. Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
  10. Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
  11. Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true],
  12. Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
  13. ApiPlatform\Core\Bridge\Symfony\Bundle\ApiPlatformBundle::class => ['all' => true],
  14. ];