auroralumina / view
1.2
2024-06-09 21:33 UTC
Requires
- php: ^8.3
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is auto-updated.
Last update: 2026-09-12 17:20:52 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');