]> git.immae.eu Git - github/wallabag/wallabag.git/blame - app/AppKernel.php
Merge pull request #1095 from wallabag/v2-config
[github/wallabag/wallabag.git] / app / AppKernel.php
CommitLineData
93fd4692
NL
1<?php
2
3use Symfony\Component\HttpKernel\Kernel;
4use Symfony\Component\Config\Loader\LoaderInterface;
3e5a342f 5use Wallabag\ApiBundle\WallabagApiBundle;
93fd4692
NL
6
7class AppKernel extends Kernel
8{
9 public function registerBundles()
10 {
11 $bundles = array(
12 new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
13 new Symfony\Bundle\SecurityBundle\SecurityBundle(),
14 new Symfony\Bundle\TwigBundle\TwigBundle(),
15 new Symfony\Bundle\MonologBundle\MonologBundle(),
16 new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
17 new Symfony\Bundle\AsseticBundle\AsseticBundle(),
18 new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
19 new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
e4788de5
NL
20 new FOS\RestBundle\FOSRestBundle(),
21 new JMS\SerializerBundle\JMSSerializerBundle(),
22 new Nelmio\ApiDocBundle\NelmioApiDocBundle(),
f8bf8952 23 new Wallabag\CoreBundle\WallabagCoreBundle()
93fd4692
NL
24 );
25
26 if (in_array($this->getEnvironment(), array('dev', 'test'))) {
27 $bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle();
93fd4692
NL
28 $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
29 $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
30 $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
3b815d2d 31 $bundles[] = new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle();
93fd4692
NL
32 }
33
34 return $bundles;
35 }
36
37 public function registerContainerConfiguration(LoaderInterface $loader)
38 {
39 $loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.yml');
40 }
41}