]> git.immae.eu Git - github/wallabag/wallabag.git/blame - app/AppKernel.php
Always include warning message
[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 {
73cd160b 10 $bundles = [
93fd4692
NL
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 19 new FOS\RestBundle\FOSRestBundle(),
a1691859 20 new FOS\UserBundle\FOSUserBundle(),
e4788de5
NL
21 new JMS\SerializerBundle\JMSSerializerBundle(),
22 new Nelmio\ApiDocBundle\NelmioApiDocBundle(),
dcae2fc2 23 new Nelmio\CorsBundle\NelmioCorsBundle(),
32da2a70 24 new Liip\ThemeBundle\LiipThemeBundle(),
0f006880 25 new Wallabag\CoreBundle\WallabagCoreBundle(),
769e19dc
J
26 new Wallabag\ApiBundle\WallabagApiBundle(),
27 new Bazinga\Bundle\HateoasBundle\BazingaHateoasBundle(),
26864574 28 new Lexik\Bundle\FormFilterBundle\LexikFormFilterBundle(),
fcb1fba5 29 new FOS\OAuthServerBundle\FOSOAuthServerBundle(),
1210dae1 30 new Wallabag\UserBundle\WallabagUserBundle(),
3c65dfb7 31 new Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle(),
2db616b5 32 new Scheb\TwoFactorBundle\SchebTwoFactorBundle(),
c3510620 33 new KPhoen\RulerZBundle\KPhoenRulerZBundle(),
1f4408de 34 new Wallabag\ImportBundle\WallabagImportBundle(),
292c1324 35 new Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle(),
73cd160b 36 ];
93fd4692 37
73cd160b 38 if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
93fd4692 39 $bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle();
93fd4692
NL
40 $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
41 $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
42 $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
3b815d2d 43 $bundles[] = new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle();
93fd4692
NL
44 }
45
46 return $bundles;
47 }
48
73cd160b
JB
49 public function getRootDir()
50 {
51 return __DIR__;
52 }
53
54 public function getCacheDir()
55 {
56 return dirname(__DIR__).'/var/cache/'.$this->getEnvironment();
57 }
58
59 public function getLogDir()
60 {
61 return dirname(__DIR__).'/var/logs';
62 }
63
93fd4692
NL
64 public function registerContainerConfiguration(LoaderInterface $loader)
65 {
5c895a7f 66 $loader->load($this->getRootDir().'/config/config_'.$this->getEnvironment().'.yml');
93fd4692
NL
67 }
68}