]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/AppKernel.php
manage assets through npm
[github/wallabag/wallabag.git] / app / AppKernel.php
1 <?php
2
3 use Symfony\Component\HttpKernel\Kernel;
4 use Symfony\Component\Config\Loader\LoaderInterface;
5
6 class AppKernel extends Kernel
7 {
8 public function registerBundles()
9 {
10 $bundles = [
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 Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
17 new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
18 new FOS\RestBundle\FOSRestBundle(),
19 new FOS\UserBundle\FOSUserBundle(),
20 new JMS\SerializerBundle\JMSSerializerBundle(),
21 new Nelmio\ApiDocBundle\NelmioApiDocBundle(),
22 new Nelmio\CorsBundle\NelmioCorsBundle(),
23 new Liip\ThemeBundle\LiipThemeBundle(),
24 new Bazinga\Bundle\HateoasBundle\BazingaHateoasBundle(),
25 new Lexik\Bundle\FormFilterBundle\LexikFormFilterBundle(),
26 new FOS\OAuthServerBundle\FOSOAuthServerBundle(),
27 new Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle(),
28 new Scheb\TwoFactorBundle\SchebTwoFactorBundle(),
29 new KPhoen\RulerZBundle\KPhoenRulerZBundle(),
30 new Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle(),
31 new Craue\ConfigBundle\CraueConfigBundle(),
32 new Lexik\Bundle\MaintenanceBundle\LexikMaintenanceBundle(),
33 new WhiteOctober\PagerfantaBundle\WhiteOctoberPagerfantaBundle(),
34
35 // wallabag bundles
36 new Wallabag\CoreBundle\WallabagCoreBundle(),
37 new Wallabag\ApiBundle\WallabagApiBundle(),
38 new Wallabag\UserBundle\WallabagUserBundle(),
39 new Wallabag\ImportBundle\WallabagImportBundle(),
40 new Wallabag\AnnotationBundle\WallabagAnnotationBundle(),
41 ];
42
43 if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
44 $bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle();
45 $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
46 $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
47 $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
48 $bundles[] = new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle();
49 }
50
51 return $bundles;
52 }
53
54 public function getRootDir()
55 {
56 return __DIR__;
57 }
58
59 public function getCacheDir()
60 {
61 return dirname(__DIR__).'/var/cache/'.$this->getEnvironment();
62 }
63
64 public function getLogDir()
65 {
66 return dirname(__DIR__).'/var/logs';
67 }
68
69 public function registerContainerConfiguration(LoaderInterface $loader)
70 {
71 $loader->load($this->getRootDir().'/config/config_'.$this->getEnvironment().'.yml');
72 }
73 }