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