Issues (4057)

Branch: fix-integration-tests

config/bundles.php (1 issue)

1
<?php
2
0 ignored issues
show
Missing file doc comment
Loading history...
3
return [
4
    Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
5
    JMS\TranslationBundle\JMSTranslationBundle::class => ['all' => true],
6
    Nelmio\SecurityBundle\NelmioSecurityBundle::class => ['all' => true],
7
    OpenConext\MonitorBundle\OpenConextMonitorBundle::class => ['all' => true],
8
    Surfnet\SamlBundle\SurfnetSamlBundle::class => ['all' => false],
9
    Surfnet\StepupBundle\SurfnetStepupBundle::class => ['all' => true],
10
    Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
11
    Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
12
    Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
13
    Liip\TestFixturesBundle\LiipTestFixturesBundle::class => ['dev' => true, 'test' => true, 'smoketest' => true, 'smoketest_event_replay' => true],
14
    Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true],
15
    Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
16
    Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
17
    Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
18
    Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true, 'smoketest' => true, 'dev_event_replay' => true, 'prod_event_replay' => true, 'smoketest_event_replay' => true],
19
    Surfnet\StepupMiddleware\ApiBundle\SurfnetStepupMiddlewareApiBundle::class => ['all' => true],
20
    Surfnet\StepupMiddleware\CommandHandlingBundle\SurfnetStepupMiddlewareCommandHandlingBundle::class => ['all' => true],
21
    Surfnet\StepupMiddleware\GatewayBundle\SurfnetStepupMiddlewareGatewayBundle::class => ['all' => true],
22
    Surfnet\StepupMiddleware\ManagementBundle\SurfnetStepupMiddlewareManagementBundle::class => ['all' => true],
23
    Surfnet\StepupMiddleware\MiddlewareBundle\SurfnetStepupMiddlewareMiddlewareBundle::class => ['all' => true],
24
];
25