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],
|
2019-11-05 12:16:16 +01:00
|
|
|
Symfony\Bundle\WebServerBundle\WebServerBundle::class => ['dev' => true],
|
2019-11-05 16:31:27 +01:00
|
|
|
Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
|
2019-11-06 10:07:07 +01:00
|
|
|
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],
|
2019-10-24 13:06:51 +02:00
|
|
|
];
|