schranz-templating/spiral-latte-integration

A integration of template renderer into spiral via latte template engine.

0.1.0 2022-11-14 21:24 UTC

This package is auto-updated.

Last update: 2024-03-29 04:46:52 UTC


README

Integrate the templating Latte Adapter into the Spiral Framework.

Part of the Schranz Templating Project.

Installation

Install this package via Composer:

composer require schranz-templating/spiral-latte-integration

Register the Bootloader class in your app/src/Application/Kernel.php if not already automatically added by the framework:

class Kernel extends \Spiral\Framework\Kernel
{
    protected const LOAD = [
        // ...
        \Schranz\Templating\Integration\Spiral\Latte\Bootloader\LatteBootloader::class,
    ];
}

Configuration

The integration provides the following configuration.

// app/config/schranz_templating_latte.php

declare(strict_types=1);

return [
    'path' => 'app/views',
    'cache_dir' => 'runtime/cache/latte',
];