12345678910111213141516171819202122232425262728293031323334 |
- <?php
- use Osinet\DemoBundle\OsinetDemoBundle;
- use Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle;
- use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
- use Symfony\Bundle\TwigBundle\TwigBundle;
- use Symfony\Bundle\WebProfilerBundle\WebProfilerBundle;
- use Symfony\Bundle\WebServerBundle\WebServerBundle;
- $all = ['all' => TRUE];
- $dev = ['dev' => TRUE];
- $test = ['test' => TRUE];
- return [
-
- FrameworkBundle::class => $all,
- WebServerBundle::class => $dev,
- SensioFrameworkExtraBundle::class => $all,
- WebProfilerBundle::class => $dev + $test,
- TwigBundle::class => $all,
-
- OsinetDemoBundle::class => $all,
- ];
|