10 lines
407 B
PHP
10 lines
407 B
PHP
|
<?php
|
||
|
|
||
|
return [
|
||
|
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
|
||
|
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
|
||
|
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
|
||
|
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
|
||
|
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true],
|
||
|
];
|