2015-01-22 07:30:07 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Symfony\Component\Config\Loader\LoaderInterface;
|
2017-07-01 07:52:38 +00:00
|
|
|
use Symfony\Component\HttpKernel\Kernel;
|
2015-01-22 07:30:07 +00:00
|
|
|
|
|
|
|
class AppKernel extends Kernel
|
|
|
|
{
|
|
|
|
public function registerBundles()
|
|
|
|
{
|
2016-01-14 17:15:07 +00:00
|
|
|
$bundles = [
|
2015-01-22 07:30:07 +00:00
|
|
|
new Symfony\Bundle\FrameworkBundle\FrameworkBundle(),
|
|
|
|
new Symfony\Bundle\SecurityBundle\SecurityBundle(),
|
|
|
|
new Symfony\Bundle\TwigBundle\TwigBundle(),
|
|
|
|
new Symfony\Bundle\MonologBundle\MonologBundle(),
|
|
|
|
new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
|
|
|
|
new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(),
|
|
|
|
new Sensio\Bundle\FrameworkExtraBundle\SensioFrameworkExtraBundle(),
|
2015-01-28 16:09:27 +00:00
|
|
|
new FOS\RestBundle\FOSRestBundle(),
|
2015-08-18 09:08:45 +00:00
|
|
|
new FOS\UserBundle\FOSUserBundle(),
|
2015-01-28 16:09:27 +00:00
|
|
|
new JMS\SerializerBundle\JMSSerializerBundle(),
|
|
|
|
new Nelmio\ApiDocBundle\NelmioApiDocBundle(),
|
2015-02-27 20:26:43 +00:00
|
|
|
new Nelmio\CorsBundle\NelmioCorsBundle(),
|
2015-02-23 21:55:06 +00:00
|
|
|
new Liip\ThemeBundle\LiipThemeBundle(),
|
2015-03-29 08:53:10 +00:00
|
|
|
new Bazinga\Bundle\HateoasBundle\BazingaHateoasBundle(),
|
2015-08-07 20:20:30 +00:00
|
|
|
new Lexik\Bundle\FormFilterBundle\LexikFormFilterBundle(),
|
2015-09-29 12:31:52 +00:00
|
|
|
new FOS\OAuthServerBundle\FOSOAuthServerBundle(),
|
2015-10-14 19:30:25 +00:00
|
|
|
new Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle(),
|
2015-10-13 20:43:15 +00:00
|
|
|
new Scheb\TwoFactorBundle\SchebTwoFactorBundle(),
|
2015-10-11 14:54:21 +00:00
|
|
|
new KPhoen\RulerZBundle\KPhoenRulerZBundle(),
|
2016-01-08 15:27:29 +00:00
|
|
|
new Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle(),
|
2016-01-21 07:53:09 +00:00
|
|
|
new Craue\ConfigBundle\CraueConfigBundle(),
|
2016-04-12 14:04:17 +00:00
|
|
|
new WhiteOctober\PagerfantaBundle\WhiteOctoberPagerfantaBundle(),
|
2016-10-24 09:20:11 +00:00
|
|
|
new FOS\JsRoutingBundle\FOSJsRoutingBundle(),
|
2016-09-29 08:14:43 +00:00
|
|
|
new BD\GuzzleSiteAuthenticatorBundle\BDGuzzleSiteAuthenticatorBundle(),
|
2016-04-12 14:04:17 +00:00
|
|
|
|
|
|
|
// wallabag bundles
|
|
|
|
new Wallabag\CoreBundle\WallabagCoreBundle(),
|
|
|
|
new Wallabag\ApiBundle\WallabagApiBundle(),
|
|
|
|
new Wallabag\UserBundle\WallabagUserBundle(),
|
|
|
|
new Wallabag\ImportBundle\WallabagImportBundle(),
|
2016-02-26 12:59:08 +00:00
|
|
|
new Wallabag\AnnotationBundle\WallabagAnnotationBundle(),
|
2016-01-15 07:24:32 +00:00
|
|
|
new OldSound\RabbitMqBundle\OldSoundRabbitMqBundle(),
|
2016-01-14 17:15:07 +00:00
|
|
|
];
|
2015-01-22 07:30:07 +00:00
|
|
|
|
2016-01-14 17:15:07 +00:00
|
|
|
if (in_array($this->getEnvironment(), ['dev', 'test'], true)) {
|
2015-01-22 07:30:07 +00:00
|
|
|
$bundles[] = new Symfony\Bundle\DebugBundle\DebugBundle();
|
|
|
|
$bundles[] = new Symfony\Bundle\WebProfilerBundle\WebProfilerBundle();
|
|
|
|
$bundles[] = new Sensio\Bundle\DistributionBundle\SensioDistributionBundle();
|
|
|
|
$bundles[] = new Sensio\Bundle\GeneratorBundle\SensioGeneratorBundle();
|
2015-02-08 22:05:51 +00:00
|
|
|
$bundles[] = new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle();
|
2017-10-13 21:04:16 +00:00
|
|
|
$bundles[] = new Symfony\Bundle\WebServerBundle\WebServerBundle();
|
2017-05-15 18:47:59 +00:00
|
|
|
|
|
|
|
if ('test' === $this->getEnvironment()) {
|
|
|
|
$bundles[] = new DAMA\DoctrineTestBundle\DAMADoctrineTestBundle();
|
|
|
|
}
|
2015-01-22 07:30:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $bundles;
|
|
|
|
}
|
|
|
|
|
2016-01-14 17:15:07 +00:00
|
|
|
public function getCacheDir()
|
|
|
|
{
|
2017-07-01 07:52:38 +00:00
|
|
|
return dirname(__DIR__) . '/var/cache/' . $this->getEnvironment();
|
2016-01-14 17:15:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getLogDir()
|
|
|
|
{
|
2017-07-01 07:52:38 +00:00
|
|
|
return dirname(__DIR__) . '/var/logs';
|
2016-01-14 17:15:07 +00:00
|
|
|
}
|
|
|
|
|
2015-01-22 07:30:07 +00:00
|
|
|
public function registerContainerConfiguration(LoaderInterface $loader)
|
|
|
|
{
|
2017-10-13 21:52:15 +00:00
|
|
|
$loader->load($this->getProjectDir() . '/app/config/config_' . $this->getEnvironment() . '.yml');
|
2017-03-31 18:21:41 +00:00
|
|
|
$loader->load(function ($container) {
|
2017-07-01 07:52:38 +00:00
|
|
|
if ($container->getParameter('use_webpack_dev_server')) {
|
|
|
|
$container->loadFromExtension('framework', [
|
2017-03-31 18:21:41 +00:00
|
|
|
'assets' => [
|
|
|
|
'base_url' => 'http://localhost:8080/',
|
|
|
|
],
|
|
|
|
]);
|
2017-07-01 07:52:38 +00:00
|
|
|
}
|
2017-03-31 18:21:41 +00:00
|
|
|
});
|
2015-01-22 07:30:07 +00:00
|
|
|
}
|
|
|
|
}
|