Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 742 Bytes

README.md

File metadata and controls

31 lines (20 loc) · 742 Bytes

Ride: Template Library (PHP)

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