2015-01-22 07:30:07 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Symfony\Component\HttpKernel\Kernel;
|
|
|
|
use Symfony\Component\Config\Loader\LoaderInterface;
|
|
|
|
|
|
|
|
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 Symfony\Bundle\AsseticBundle\AsseticBundle(),
|
|
|
|
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-02-20 10:45:38 +00:00
|
|
|
new Wallabag\CoreBundle\WallabagCoreBundle(),
|
2015-03-29 08:53:10 +00:00
|
|
|
new Wallabag\ApiBundle\WallabagApiBundle(),
|
|
|
|
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-02 12:51:41 +00:00
|
|
|
new Wallabag\UserBundle\WallabagUserBundle(),
|
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(),
|
2015-10-20 11:58:13 +00:00
|
|
|
new Wallabag\ImportBundle\WallabagImportBundle(),
|
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-02-19 13:33:28 +00:00
|
|
|
new Lexik\Bundle\MaintenanceBundle\LexikMaintenanceBundle(),
|
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();
|
2015-01-22 07:30:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $bundles;
|
|
|
|
}
|
|
|
|
|
2016-01-14 17:15:07 +00:00
|
|
|
public function getRootDir()
|
|
|
|
{
|
|
|
|
return __DIR__;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getCacheDir()
|
|
|
|
{
|
|
|
|
return dirname(__DIR__).'/var/cache/'.$this->getEnvironment();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getLogDir()
|
|
|
|
{
|
|
|
|
return dirname(__DIR__).'/var/logs';
|
|
|
|
}
|
|
|
|
|
2015-01-22 07:30:07 +00:00
|
|
|
public function registerContainerConfiguration(LoaderInterface $loader)
|
|
|
|
{
|
2015-12-22 12:00:37 +00:00
|
|
|
$loader->load($this->getRootDir().'/config/config_'.$this->getEnvironment().'.yml');
|
2015-01-22 07:30:07 +00:00
|
|
|
}
|
|
|
|
}
|