]>
Commit | Line | Data |
---|---|---|
93fd4692 NL |
1 | <?php |
2 | ||
93fd4692 | 3 | use Symfony\Component\Config\Loader\LoaderInterface; |
f808b016 | 4 | use Symfony\Component\HttpKernel\Kernel; |
93fd4692 NL |
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(), | |
93fd4692 NL |
16 | new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(), |
17 | new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(), | |
e4788de5 | 18 | new FOS\RestBundle\FOSRestBundle(), |
a1691859 | 19 | new FOS\UserBundle\FOSUserBundle(), |
e4788de5 NL |
20 | new JMS\SerializerBundle\JMSSerializerBundle(), |
21 | new Nelmio\ApiDocBundle\NelmioApiDocBundle(), | |
dcae2fc2 | 22 | new Nelmio\CorsBundle\NelmioCorsBundle(), |
32da2a70 | 23 | new Liip\ThemeBundle\LiipThemeBundle(), |
769e19dc | 24 | new Bazinga\Bundle\HateoasBundle\BazingaHateoasBundle(), |
26864574 | 25 | new Lexik\Bundle\FormFilterBundle\LexikFormFilterBundle(), |
fcb1fba5 | 26 | new FOS\OAuthServerBundle\FOSOAuthServerBundle(), |
3c65dfb7 | 27 | new Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle(), |
2db616b5 | 28 | new Scheb\TwoFactorBundle\SchebTwoFactorBundle(), |
c3510620 | 29 | new KPhoen\RulerZBundle\KPhoenRulerZBundle(), |
292c1324 | 30 | new Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle(), |
63e40f2d | 31 | new Craue\ConfigBundle\CraueConfigBundle(), |
624a7c6d | 32 | new WhiteOctober\PagerfantaBundle\WhiteOctoberPagerfantaBundle(), |
3cc78f06 | 33 | new FOS\JsRoutingBundle\FOSJsRoutingBundle(), |
7aab0ecf | 34 | new BD\GuzzleSiteAuthenticatorBundle\BDGuzzleSiteAuthenticatorBundle(), |
624a7c6d NL |
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(), |
56c778b4 | 42 | new OldSound\RabbitMqBundle\OldSoundRabbitMqBundle(), |
73cd160b | 43 | ]; |
93fd4692 | 44 | |
73cd160b | 45 | if (in_array($this->getEnvironment(), ['dev', 'test'], true)) { |
93fd4692 | 46 | $bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle(); |
93fd4692 NL |
47 | $bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle(); |
48 | $bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle(); | |
49 | $bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle(); | |
3b815d2d | 50 | $bundles[] = new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle(); |
3c9fbb4e | 51 | $bundles[] = new Symfony\Bundle\WebServerBundle\WebServerBundle(); |
7ab5eb95 | 52 | |
53 | if ('test' === $this->getEnvironment()) { | |
54 | $bundles[] = new DAMA\DoctrineTestBundle\DAMADoctrineTestBundle(); | |
55 | } | |
93fd4692 NL |
56 | } |
57 | ||
58 | return $bundles; | |
59 | } | |
60 | ||
73cd160b JB |
61 | public function getCacheDir() |
62 | { | |
f808b016 | 63 | return dirname(__DIR__) . '/var/cache/' . $this->getEnvironment(); |
73cd160b JB |
64 | } |
65 | ||
66 | public function getLogDir() | |
67 | { | |
f808b016 | 68 | return dirname(__DIR__) . '/var/logs'; |
73cd160b JB |
69 | } |
70 | ||
93fd4692 NL |
71 | public function registerContainerConfiguration(LoaderInterface $loader) |
72 | { | |
9ca069a6 | 73 | $loader->load($this->getProjectDir() . '/app/config/config_' . $this->getEnvironment() . '.yml'); |
64f81bc3 | 74 | $loader->load(function ($container) { |
f808b016 JB |
75 | if ($container->getParameter('use_webpack_dev_server')) { |
76 | $container->loadFromExtension('framework', [ | |
64f81bc3 TC |
77 | 'assets' => [ |
78 | 'base_url' => 'http://localhost:8080/', | |
79 | ], | |
80 | ]); | |
0d9c8081 | 81 | } else { |
e8694faa KD |
82 | $container->loadFromExtension('framework', [ |
83 | 'assets' => [ | |
84 | 'base_url' => $container->getParameter('domain_name'), | |
0d9c8081 | 85 | ], |
e8694faa KD |
86 | ]); |
87 | } | |
64f81bc3 | 88 | }); |
93fd4692 NL |
89 | } |
90 | } |