From c19f5c82046e3928d4b95bcdca07760a4e749595 Mon Sep 17 00:00:00 2001 From: Jarek Jakubowski Date: Thu, 17 Jan 2019 16:13:58 +0100 Subject: [PATCH] fix local config --- .gitignore | 1 + config/bundles.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 01fd12ef..8c7986da 100644 --- a/.gitignore +++ b/.gitignore @@ -45,6 +45,7 @@ appveyor.yml ###Local config /config/packages/local +/config/routes/local ###> symfony/framework-bundle ### /.env diff --git a/config/bundles.php b/config/bundles.php index 407fcbc2..a6ebb948 100644 --- a/config/bundles.php +++ b/config/bundles.php @@ -12,7 +12,7 @@ return [ Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle::class => ['all' => true], Symfony\Bundle\DebugBundle\DebugBundle::class => ['dev' => true, 'test' => true, 'local' => true], Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true], - Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true], + Symfony\Bundle\MakerBundle\MakerBundle::class => ['dev' => true, 'local' => true], Symfony\Bundle\MonologBundle\MonologBundle::class => ['all' => true], Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true], Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle::class => ['all' => true],