auroralumina / view
1.2
2024-06-09 21:33 UTC
Requires
- php: ^8.3
This package is auto-updated.
Last update: 2026-03-12 16:16:53 UTC
README
The View is a template generation for PHP. It allows for creating and managing template files with template tags and variables
Installation
It's recommended that you use Composer to install View.
composer require auroralumina/view
Example
<?php
require_once 'vendor/autoload.php';
$configuration = new AuroraLumina\View\ViewConfiguration([
__DIR__ . '/views/',
]);
$view = new AuroraLumina\View\View($configuration);
echo $view->render('index');