app
config
SculpinKernel.php
bundle
docker
source
tools
.dockerignore
.editorconfig
.env
.gitignore
.php_cs
Makefile
README.md
composer.json
composer.lock
deploy.php
npm-shrinkwrap.json
package.json
webpack.config.js
19 lines
477 B
PHP
19 lines
477 B
PHP
<?php
|
|
|
|
use Homepage\HtmlPrettierBundle\HtmlPrettierBundle;
|
|
use Homepage\SiteMapBundle\SiteMapBundle;
|
|
use Homepage\TwigExtensionBundle\TwigExtensionBundle;
|
|
use Sculpin\Bundle\SculpinBundle\HttpKernel\AbstractKernel;
|
|
|
|
class SculpinKernel extends AbstractKernel
|
|
{
|
|
protected function getAdditionalSculpinBundles(): array
|
|
{
|
|
return [
|
|
TwigExtensionBundle::class,
|
|
SiteMapBundle::class,
|
|
HtmlPrettierBundle::class,
|
|
];
|
|
}
|
|
}
|