Integrate the templating Blade Adapter into the Mezzio Framework.
Part of the Schranz Templating Project.
Install this package via Composer:
composer require schranz-templating/mezzio-blade-integration
Register the ConfigProvider class in your config/config.php
if not already automatically
added by the framework:
// ...
$aggregator = new ConfigAggregator([
// ...
\Schranz\Templating\Integration\Mezzio\Blade\ConfigProvider::class,
]);
The following configuration is available:
// src/App/src/ConfigProvider.php
class ConfigProvider
{
public function __invoke(): array
{
return [
// ...
'blade' => [
'paths' => 'src/App/templates',
'cache_dir' => 'data/cache/blade',
],
];
}
}