getRootDir() . '/../logs'; } public function registerBundles() { return [ new Symfony\Bundle\FrameworkBundle\FrameworkBundle(), new Chill\CustomFieldsBundle\ChillCustomFieldsBundle(), new Symfony\Bundle\SecurityBundle\SecurityBundle(), new Symfony\Bundle\MonologBundle\MonologBundle(), new Symfony\Bundle\TwigBundle\TwigBundle(), new \Symfony\Bundle\AsseticBundle\AsseticBundle(), new Doctrine\Bundle\DoctrineBundle\DoctrineBundle(), new \Chill\MainBundle\ChillMainBundle(), new \Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle(), new Doctrine\Bundle\MigrationsBundle\DoctrineMigrationsBundle(), new Chill\PersonBundle\ChillPersonBundle(), //add here all the required bundle (some bundle are not required) ]; } public function registerContainerConfiguration(LoaderInterface $loader) { $loader->load(__DIR__ . '/config/config_' . $this->getEnvironment() . '.yml'); } }