bundles.php 1014 B

12345678910111213141516
  1. <?php
  2. return [
  3. Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
  4. Symfony\Bundle\WebServerBundle\WebServerBundle::class => ['dev' => true],
  5. Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
  6. Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
  7. Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
  8. Osinet\DemoBundle\OsinetDemoBundle::class => ['all' => true],
  9. Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
  10. Doctrine\Bundle\DoctrineCacheBundle\DoctrineCacheBundle::class => ['all' => true],
  11. Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
  12. Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
  13. Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
  14. Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle::class => ['all' => true],
  15. ];