|
1 | 1 | <?php
|
2 | 2 |
|
3 |
| -use Symfony\Bundle\FrameworkBundle\FrameworkBundle; |
4 |
| -use Symfony\Bundle\TwigBundle\TwigBundle; |
5 |
| -use Symfony\Bundle\WebProfilerBundle\WebProfilerBundle; |
6 |
| -use Doctrine\Bundle\DoctrineBundle\DoctrineBundle; |
7 |
| -use Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle; |
8 |
| -use Symfony\Bundle\MonologBundle\MonologBundle; |
9 |
| -use Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle; |
10 |
| -use Symfony\Bundle\MakerBundle\MakerBundle; |
11 |
| -use Sentry\SentryBundle\SentryBundle; |
12 |
| -use Symfony\Bundle\SecurityBundle\SecurityBundle; |
13 |
| -use Twig\Extra\TwigExtraBundle\TwigExtraBundle; |
14 |
| -use League\Bundle\OAuth2ServerBundle\LeagueOAuth2ServerBundle; |
15 |
| -use Nelmio\CorsBundle\NelmioCorsBundle; |
16 |
| - |
17 | 3 | return [
|
18 |
| - FrameworkBundle::class => ['all' => true], |
19 |
| - TwigBundle::class => ['all' => true], |
20 |
| - WebProfilerBundle::class => ['dev' => true, 'test' => true], |
21 |
| - DoctrineBundle::class => ['all' => true], |
22 |
| - DoctrineMigrationsBundle::class => ['all' => true], |
23 |
| - MonologBundle::class => ['all' => true], |
24 |
| - DoctrineFixturesBundle::class => ['dev' => true, 'test' => true], |
25 |
| - MakerBundle::class => ['dev' => true], |
26 |
| - SentryBundle::class => ['all' => true], |
27 |
| - SecurityBundle::class => ['all' => true], |
28 |
| - TwigExtraBundle::class => ['all' => true], |
29 |
| - LeagueOAuth2ServerBundle::class => ['all' => true], |
30 |
| - NelmioCorsBundle::class => ['all' => true], |
| 4 | + Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true], |
| 5 | + Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true], |
| 6 | + Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true], |
| 7 | + Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true], |
| 8 | + Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true], |
| 9 | + Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true], |
| 10 | + Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true], |
| 11 | + Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true], |
| 12 | + Sentry\SentryBundle\SentryBundle::class => ['all' => true], |
| 13 | + Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true], |
| 14 | + Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true], |
| 15 | + League\Bundle\OAuth2ServerBundle\LeagueOAuth2ServerBundle::class => ['all' => true], |
| 16 | + Nelmio\CorsBundle\NelmioCorsBundle::class => ['all' => true], |
31 | 17 | ];
|
0 commit comments