date-poll-api/config/bundles.php

21 lines
1.2 KiB
PHP
Raw Normal View History

2019-10-24 13:06:51 +02:00
<?php
return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
2019-10-25 14:13:11 +02:00
FOS\RestBundle\FOSRestBundle::class => ['all' => true],
JMS\SerializerBundle\JMSSerializerBundle::class => ['all' => true],
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
Symfony\Bundle\WebServerBundle\WebServerBundle::class => ['dev' => true],
2019-11-05 16:31:27 +01:00
Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
Nelmio\ApiDocBundle\NelmioApiDocBundle::class => ['all' => true],
2019-11-06 12:27:46 +01:00
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
2020-01-21 12:55:03 +01:00
Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true],
2020-01-22 12:17:49 +01:00
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle::class => ['all' => true],
2020-05-08 23:00:57 +02:00
Liip\TestFixturesBundle\LiipTestFixturesBundle::class => ['test' => true],
2020-10-26 11:39:04 +01:00
Symfony\WebpackEncoreBundle\WebpackEncoreBundle::class => ['all' => true],
2020-10-28 15:46:39 +01:00
Overblog\GraphQLBundle\OverblogGraphQLBundle::class => ['all' => true],
2019-10-24 13:06:51 +02:00
];