ride/lib-template-php

PHP engine for the template library of the Ride framework.

1.0.0 2016-10-07 11:44 UTC

This package is auto-updated.

Last update: 2024-04-12 23:02:28 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