2015-01-22 07:30:07 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Symfony\Component\Config\Loader\LoaderInterface;
|
2018-10-24 19:02:35 +00:00
|
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
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 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-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(),
|
2020-06-15 06:25:59 +00:00
|
|
|
new BabDev\PagerfantaBundle\BabDevPagerfantaBundle(),
|
2016-10-24 09:20:11 +00:00
|
|
|
new FOS\JsRoutingBundle\FOSJsRoutingBundle(),
|
2016-09-29 08:14:43 +00:00
|
|
|
new BD\GuzzleSiteAuthenticatorBundle\BDGuzzleSiteAuthenticatorBundle(),
|
2018-10-04 12:07:20 +00:00
|
|
|
new OldSound\RabbitMqBundle\OldSoundRabbitMqBundle(),
|
2017-10-24 20:55:40 +00:00
|
|
|
new Http\HttplugBundle\HttplugBundle(),
|
2019-06-05 11:15:15 +00:00
|
|
|
new Sentry\SentryBundle\SentryBundle(),
|
2022-12-15 11:32:16 +00:00
|
|
|
new Twig\Extra\TwigExtraBundle\TwigExtraBundle(),
|
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-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();
|
2015-02-08 22:05:51 +00:00
|
|
|
$bundles[] = new Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle();
|
2017-05-15 18:47:59 +00:00
|
|
|
|
|
|
|
if ('test' === $this->getEnvironment()) {
|
|
|
|
$bundles[] = new DAMA\DoctrineTestBundle\DAMADoctrineTestBundle();
|
|
|
|
}
|
2018-10-24 19:02:35 +00:00
|
|
|
|
|
|
|
if ('dev' === $this->getEnvironment()) {
|
2020-05-25 04:16:16 +00:00
|
|
|
$bundles[] = new Symfony\Bundle\MakerBundle\MakerBundle();
|
2018-10-24 19:02:35 +00:00
|
|
|
$bundles[] = new Symfony\Bundle\WebServerBundle\WebServerBundle();
|
|
|
|
}
|
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)
|
|
|
|
{
|
2023-08-07 21:22:35 +00:00
|
|
|
$loader->load($this->getProjectDir() . '/app/config/config_' . $this->getEnvironment() . '.yml');
|
2018-10-24 19:02:35 +00:00
|
|
|
|
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-12-20 21:18:26 +00:00
|
|
|
} else {
|
2017-12-20 20:53:11 +00:00
|
|
|
$container->loadFromExtension('framework', [
|
|
|
|
'assets' => [
|
|
|
|
'base_url' => $container->getParameter('domain_name'),
|
2017-12-20 21:18:26 +00:00
|
|
|
],
|
2017-12-20 20:53:11 +00:00
|
|
|
]);
|
|
|
|
}
|
2017-03-31 18:21:41 +00:00
|
|
|
});
|
2018-10-24 19:02:35 +00:00
|
|
|
|
|
|
|
$loader->load(function (ContainerBuilder $container) {
|
|
|
|
// $container->setParameter('container.autowiring.strict_mode', true);
|
|
|
|
// $container->setParameter('container.dumper.inline_class_loader', true);
|
|
|
|
$container->addObjectResource($this);
|
|
|
|
});
|
2015-01-22 07:30:07 +00:00
|
|
|
}
|
|
|
|
}
|