date-poll-api/config/bundles.php

19 lines
1.1 KiB
PHP
Raw Permalink Normal View History

2019-10-24 13:06:51 +02:00
<?php
return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle::class => ['all' => true],
2019-10-25 14:13:11 +02:00
JMS\SerializerBundle\JMSSerializerBundle::class => ['all' => true],
FOS\RestBundle\FOSRestBundle::class => ['all' => true],
2019-10-25 14:13:11 +02:00
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
2019-10-25 14:13:11 +02:00
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
2019-11-06 12:27:46 +01:00
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
2021-04-21 11:22:01 +02:00
Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
2021-04-21 13:46:21 +02:00
Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true],
2021-04-29 10:20:12 +02:00
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true, 'test' => true],
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
Nelmio\ApiDocBundle\NelmioApiDocBundle::class => ['all' => true],
2019-10-24 13:06:51 +02:00
];