Download the PHP package flaviovs/uview without Composer
On this page you can find all versions of the php package flaviovs/uview. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Please rate this library. Is it a good library?
Informations about the package uview
A micro view templating system for PHP
Usage:
$registry = new UView\Registry('/path/of/view/files');
# (...)
try {
# Will try to load '/path/of/view/files/page.php'
$view = $registry->get('page');
} catch (RuntimeException $ex) {
die('Could not find view file');
}
$view->set('user_name', 'John Smith');
$view->set('user_login', 'john.smith');
echo $view;
All versions of uview with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.4.0
The package flaviovs/uview contains the following files
Loading the files please wait ....