Add and enable markdown bundle

This commit is contained in:
Oliver Davies 2019-04-25 22:08:45 +02:00
parent 71d519426c
commit 31373ce8a7

View file

@ -2,6 +2,7 @@
use App\Schedule\SculpinScheduleBundle; use App\Schedule\SculpinScheduleBundle;
use App\Speakers\SculpinSpeakersBundle; use App\Speakers\SculpinSpeakersBundle;
use Opdavies\Sculpin\Bundle\TwigMarkdownBundle\SculpinTwigMarkdownBundle;
use Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel; use Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel;
class SculpinKernel extends AbstractKernel class SculpinKernel extends AbstractKernel
@ -11,6 +12,7 @@ class SculpinKernel extends AbstractKernel
return [ return [
SculpinScheduleBundle::class, SculpinScheduleBundle::class,
SculpinSpeakersBundle::class, SculpinSpeakersBundle::class,
SculpinTwigMarkdownBundle::class,
]; ];
} }
} }