ride / lib-template-php
PHP engine for the template library of the Ride framework.
1.0.0
2016-10-07 11:44 UTC
Requires
- ride/lib-system: ^1.0.0
- ride/lib-template: ^1.0.0
This package is auto-updated.
Last update: 2024-10-13 00:01:00 UTC
README
PHP engine for the template library of the PHP Ride framework.
Code Sample
Check this code sample to see how to initialize this library:
use ride\library\template\engine\PhpEngine; function createPhpTemplateEngine(System $system) { $engine = new PhpEngine($system->getFileBrowser(), 'view/php'); return $engine; }
Implementations
You can check the related implementations of this library:
Installation
You can use Composer to install this library.
composer require ride/lib-template-php