]>
Commit | Line | Data |
---|---|---|
93fd4692 NL |
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 | { | |
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(), |
769e19dc | 25 | new Bazinga\Bundle\HateoasBundle\BazingaHateoasBundle(), |
26864574 | 26 | new Lexik\Bundle\FormFilterBundle\LexikFormFilterBundle(), |
fcb1fba5 | 27 | new FOS\OAuthServerBundle\FOSOAuthServerBundle(), |
3c65dfb7 | 28 | new Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle(), |
2db616b5 | 29 | new Scheb\TwoFactorBundle\SchebTwoFactorBundle(), |
c3510620 | 30 | new KPhoen\RulerZBundle\KPhoenRulerZBundle(), |
292c1324 | 31 | new Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle(), |
63e40f2d | 32 | new Craue\ConfigBundle\CraueConfigBundle(), |
fbbda941 | 33 | new Lexik\Bundle\MaintenanceBundle\LexikMaintenanceBundle(), |
624a7c6d NL |
34 | new WhiteOctober\PagerfantaBundle\WhiteOctoberPagerfantaBundle(), |
35 | ||
36 | // wallabag bundles | |
37 | new Wallabag\CoreBundle\WallabagCoreBundle(), | |
38 | new Wallabag\ApiBundle\WallabagApiBundle(), | |
39 | new Wallabag\UserBundle\WallabagUserBundle(), | |
40 | new Wallabag\ImportBundle\WallabagImportBundle(), | |
4dc87223 | 41 | new Wallabag\AnnotationBundle\WallabagAnnotationBundle(), |
73cd160b | 42 | ]; |
93fd4692 | 43 | |
73cd160b | 44 | if (in_array($this->getEnvironment(), ['dev', 'test'], true)) { |
93fd4692 | 45 | $bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle(); |
93fd4692 NL |
46 | $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle(); |
47 | $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle(); | |
48 | $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle(); | |
3b815d2d | 49 | $bundles[] = new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle(); |
93fd4692 NL |
50 | } |
51 | ||
52 | return $bundles; | |
53 | } | |
54 | ||
73cd160b JB |
55 | public function getRootDir() |
56 | { | |
57 | return __DIR__; | |
58 | } | |
59 | ||
60 | public function getCacheDir() | |
61 | { | |
62 | return dirname(__DIR__).'/var/cache/'.$this->getEnvironment(); | |
63 | } | |
64 | ||
65 | public function getLogDir() | |
66 | { | |
67 | return dirname(__DIR__).'/var/logs'; | |
68 | } | |
69 | ||
93fd4692 NL |
70 | public function registerContainerConfiguration(LoaderInterface $loader) |
71 | { | |
5c895a7f | 72 | $loader->load($this->getRootDir().'/config/config_'.$this->getEnvironment().'.yml'); |
93fd4692 NL |
73 | } |
74 | } |