infinito/application/config/bundles.php

24 lines
1.5 KiB
PHP
Raw Normal View History

2018-09-01 22:18:13 +02:00
<?php
return [
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
Doctrine\Bundle\DoctrineCacheBundle\DoctrineCacheBundle::class => ['all' => true],
Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle::class => ['all' => true],
Doctrine\Bundle\DoctrineBundle\DoctrineBundle::class => ['all' => true],
Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle::class => ['all' => true],
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle::class => ['all' => true],
Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true, 'test' => true],
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true],
Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true, 'test' => true],
Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true],
Symfony\Bundle\WebServerBundle\WebServerBundle::class => ['dev' => true],
Knp\Bundle\MenuBundle\KnpMenuBundle::class => ['all' => true],
2018-09-13 02:24:25 +02:00
FOS\UserBundle\FOSUserBundle::class => ['all' => true],
2018-09-16 12:58:39 +02:00
FOS\RestBundle\FOSRestBundle::class => ['all' => true],
2018-09-16 17:51:43 +02:00
JMS\SerializerBundle\JMSSerializerBundle::class => ['all' => true],
2018-09-17 14:50:31 +02:00
SimpleThings\EntityAudit\SimpleThingsEntityAuditBundle::class => ['all' => true],
2018-09-20 16:06:02 +02:00
Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['dev' => true, 'test' => true],
2018-09-01 22:18:13 +02:00
];