auroralumina / view
Installs: 13
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 1
pkg:composer/auroralumina/view
Requires
- php: ^8.3
This package is auto-updated.
Last update: 2025-09-12 15:13:22 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');