2018-01-12 20:39:07 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
|
|
|
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
|
|
|
|
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
|
|
|
|
Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
|
|
|
|
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
|
|
|
|
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
|
|
|
|
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
|
|
|
|
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
|
|
|
|
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
|
|
|
|
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
|
|
|
|
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
|
|
|
|
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true, 'test' => true],
|
2018-02-10 19:11:30 +01:00
|
|
|
DAMA\DoctrineTestBundle\DAMADoctrineTestBundle::class => ['test' => true],
|
2018-07-09 18:25:08 +02:00
|
|
|
KevinPapst\AdminLTEBundle\AdminLTEBundle::class => ['all' => true],
|
2019-03-14 03:34:54 +01:00
|
|
|
JMS\SerializerBundle\JMSSerializerBundle::class => ['all' => true],
|
2018-07-21 22:36:36 +02:00
|
|
|
FOS\UserBundle\FOSUserBundle::class => ['all' => true],
|
2018-08-08 23:10:45 +02:00
|
|
|
FOS\RestBundle\FOSRestBundle::class => ['all' => true],
|
|
|
|
Nelmio\ApiDocBundle\NelmioApiDocBundle::class => ['all' => true],
|
2019-03-23 11:04:55 +01:00
|
|
|
Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true],
|
2019-06-03 01:43:49 +02:00
|
|
|
Symfony\WebpackEncoreBundle\WebpackEncoreBundle::class => ['all' => true],
|
2020-02-04 20:27:36 +01:00
|
|
|
Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
|
2018-01-12 20:39:07 +01:00
|
|
|
];
|