ride / lib-template-php
PHP engine for the template library of the Ride framework.
Installs: 46
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 7
Forks: 0
Open Issues: 0
pkg:composer/ride/lib-template-php
Requires
- ride/lib-system: ^1.0.0
- ride/lib-template: ^1.0.0
This package is auto-updated.
Last update: 2025-09-13 02:07:11 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