2019-10-26 18:07:36 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
return [
|
|
|
|
|
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
|
|
|
|
|
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
|
|
|
|
|
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
|
|
|
|
|
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
|
|
|
|
|
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
|
|
|
|
|
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
|
|
|
|
|
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
|
|
|
|
|
Knp\Bundle\MenuBundle\KnpMenuBundle::class => ['all' => true],
|
2026-04-09 12:10:37 +02:00
|
|
|
Sonata\Doctrine\Bridge\Symfony\SonataDoctrineBundle::class => ['all' => true],
|
|
|
|
|
Sonata\Exporter\Bridge\Symfony\SonataExporterBundle::class => ['all' => true],
|
|
|
|
|
Sonata\Form\Bridge\Symfony\Bundle\SonataFormBundle::class => ['all' => true],
|
|
|
|
|
Sonata\Twig\Bridge\Symfony\SonataTwigBundle::class => ['all' => true],
|
|
|
|
|
Sonata\BlockBundle\SonataBlockBundle::class => ['all' => true],
|
2019-10-26 18:07:36 +02:00
|
|
|
Sonata\AdminBundle\SonataAdminBundle::class => ['all' => true],
|
|
|
|
|
Sonata\UserBundle\SonataUserBundle::class => ['all' => true],
|
2019-10-27 13:35:33 +01:00
|
|
|
App\Application\Sonata\UserBundle\ApplicationSonataUserBundle::class => ['all' => true],
|
2019-10-26 18:07:36 +02:00
|
|
|
Sonata\DoctrineORMAdminBundle\SonataDoctrineORMAdminBundle::class => ['all' => true],
|
|
|
|
|
Gos\Bundle\PubSubRouterBundle\GosPubSubRouterBundle::class => ['all' => true],
|
|
|
|
|
Gos\Bundle\WebSocketBundle\GosWebSocketBundle::class => ['all' => true],
|
|
|
|
|
Symfony\WebpackEncoreBundle\WebpackEncoreBundle::class => ['all' => true],
|
|
|
|
|
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
|
|
|
|
|
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
|
|
|
|
|
];
|