Skip to content
Snippets Groups Projects
bundles.php 876 B
Newer Older
Reiter, Christoph's avatar
wip
Reiter, Christoph committed
<?php

Reiter, Christoph's avatar
Reiter, Christoph committed
declare(strict_types=1);

Reiter, Christoph's avatar
wip
Reiter, Christoph committed
return [
    Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
    Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
Reiter, Christoph's avatar
Reiter, Christoph committed
    Symfony\Bundle\WebServerBundle\WebServerBundle::class => ['dev' => false],
Reiter, Christoph's avatar
wip
Reiter, Christoph committed
    Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
    Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true],
    Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
    Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
    Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true],
    ApiPlatform\Core\Bridge\Symfony\Bundle\ApiPlatformBundle::class => ['all' => true],
    Dbp\Relay\KeycloakBundle\DbpRelayKeycloakBundle::class => ['all' => true],
    Dbp\Relay\CoreBundle\DbpRelayCoreBundle::class => ['all' => true],
Reiter, Christoph's avatar
wip
Reiter, Christoph committed
];