2019-10-24 13:06:51 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
|
2021-04-20 16:14:34 +02:00
|
|
|
Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle::class => ['all' => true],
|
2019-10-25 14:13:11 +02:00
|
|
|
JMS\SerializerBundle\JMSSerializerBundle::class => ['all' => true],
|
2021-04-20 16:14:34 +02:00
|
|
|
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],
|
2021-04-20 16:14:34 +02:00
|
|
|
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],
|
2021-05-21 10:09:51 +02:00
|
|
|
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
|
2021-06-14 10:34:03 +02:00
|
|
|
Nelmio\ApiDocBundle\NelmioApiDocBundle::class => ['all' => true],
|
2019-10-24 13:06:51 +02:00
|
|
|
];
|