Add Sculpin Twig Markdown bundle

This commit is contained in:
Oliver Davies 2021-07-19 07:30:14 +01:00
parent ef5275684e
commit 29734d6b36
3 changed files with 52 additions and 1 deletions

View file

@ -3,6 +3,7 @@
declare(strict_types=1);
use Opdavies\Sculpin\Bundle\GistEmbedBundle\SculpinGistEmbedBundle;
use Opdavies\Sculpin\Bundle\TwigMarkdownBundle\SculpinTwigMarkdownBundle;
use Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel;
final class SculpinKernel extends AbstractKernel
@ -14,6 +15,7 @@ final class SculpinKernel extends AbstractKernel
{
return [
SculpinGistEmbedBundle::class,
SculpinTwigMarkdownBundle::class,
];
}
}