3 use Symfony\Component\HttpKernel\Kernel
;
4 use Symfony\Component\Config\Loader\LoaderInterface
;
6 class AppKernel
extends Kernel
8 public function registerBundles()
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(),
19 new FOS\RestBundle\
FOSRestBundle(),
20 new FOS\UserBundle\
FOSUserBundle(),
21 new JMS\SerializerBundle\
JMSSerializerBundle(),
22 new Nelmio\ApiDocBundle\
NelmioApiDocBundle(),
23 new Nelmio\CorsBundle\
NelmioCorsBundle(),
24 new Liip\ThemeBundle\
LiipThemeBundle(),
25 new Bazinga\Bundle\HateoasBundle\
BazingaHateoasBundle(),
26 new Lexik\Bundle\FormFilterBundle\
LexikFormFilterBundle(),
27 new FOS\OAuthServerBundle\
FOSOAuthServerBundle(),
28 new Stof\DoctrineExtensionsBundle\
StofDoctrineExtensionsBundle(),
29 new Scheb\TwoFactorBundle\
SchebTwoFactorBundle(),
30 new KPhoen\RulerZBundle\
KPhoenRulerZBundle(),
31 new Doctrine\Bundle\MigrationsBundle\
DoctrineMigrationsBundle(),
32 new Craue\ConfigBundle\
CraueConfigBundle(),
33 new Lexik\Bundle\MaintenanceBundle\
LexikMaintenanceBundle(),
34 new WhiteOctober\PagerfantaBundle\
WhiteOctoberPagerfantaBundle(),
37 new Wallabag\CoreBundle\
WallabagCoreBundle(),
38 new Wallabag\ApiBundle\
WallabagApiBundle(),
39 new Wallabag\UserBundle\
WallabagUserBundle(),
40 new Wallabag\ImportBundle\
WallabagImportBundle(),
41 new Wallabag\AnnotationBundle\
WallabagAnnotationBundle(),
44 if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
45 $bundles[] = new Symfony\Bundle\DebugBundle\
DebugBundle();
46 $bundles[] = new Symfony\Bundle\WebProfilerBundle\
WebProfilerBundle();
47 $bundles[] = new Sensio\Bundle\DistributionBundle\
SensioDistributionBundle();
48 $bundles[] = new Sensio\Bundle\GeneratorBundle\
SensioGeneratorBundle();
49 $bundles[] = new Doctrine\Bundle\FixturesBundle\
DoctrineFixturesBundle();
55 public function getRootDir()
60 public function getCacheDir()
62 return dirname(__DIR__
).'/var/cache/'.$this->getEnvironment();
65 public function getLogDir()
67 return dirname(__DIR__
).'/var/logs';
70 public function registerContainerConfiguration(LoaderInterface
$loader)
72 $loader->load($this->getRootDir().'/config/config_'.$this->getEnvironment().'.yml');