]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/AppKernel.php
config for CORS
[github/wallabag/wallabag.git] / app / AppKernel.php
1 <?php
2
3 use Symfony\Component\HttpKernel\Kernel;
4 use Symfony\Component\Config\Loader\LoaderInterface;
5 use Wallabag\ApiBundle\WallabagApiBundle;
6
7 class 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(),
20 new FOS\RestBundle\FOSRestBundle(),
21 new JMS\SerializerBundle\JMSSerializerBundle(),
22 new Nelmio\ApiDocBundle\NelmioApiDocBundle(),
23 new Nelmio\CorsBundle\NelmioCorsBundle(),
24 new Wallabag\CoreBundle\WallabagCoreBundle()
25 );
26
27 if (in_array($this->getEnvironment(), array('dev', 'test'))) {
28 $bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle();
29 $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
30 $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
31 $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
32 $bundles[] = new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle();
33 }
34
35 return $bundles;
36 }
37
38 public function registerContainerConfiguration(LoaderInterface $loader)
39 {
40 $loader->load(__DIR__.'/config/config_'.$this->getEnvironment().'.yml');
41 }
42 }