schranz-templating / spiral-mustache-integration
A integration of template renderer into spiral via mustache template engine.
Package info
github.com/schranz-templating/spiral-mustache-integration
pkg:composer/schranz-templating/spiral-mustache-integration
0.1.0
2022-11-14 21:24 UTC
Requires
- php: ^7.2 || ^8.0
- schranz-templating/mustache-adapter: ^0.1
- spiral/boot: ^3.0
- spiral/config: ^3.0
- spiral/core: ^3.0
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
Integrate the templating Mustache Adapter into the Spiral Framework.
Part of the Schranz Templating Project.
Installation
Install this package via Composer:
composer require schranz-templating/spiral-mustache-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\Mustache\Bootloader\MustacheBootloader::class, ]; }
Configuration
The integration provides the following configuration.
// app/config/schranz_templating_mustache.php declare(strict_types=1); return [ 'path' => 'app/views', 'cache_dir' => 'runtime/cache/cache', ];