blakepro / template
A simple class to create HTML from JSON file
1.7.5
2022-09-10 02:29 UTC
This package is auto-updated.
Last update: 2025-03-10 07:29:48 UTC
README
A simple class to create HTML via PHP and template via JSON file
Install (via global Composer)
composer require blakepro/template --no-cache
Install (via Composer.phar)
php composer.phar require blakepro/template
Install Composer and Class (via Python)
curl -o installer.py https://raw.githubusercontent.com/BlakePro/Template/master/installer.py -H 'Cache-Control: no-cache' ; python installer.py;
Update (via Composer)
php composer.phar update blakepro/template --no-cache
Not resolved packages use
php composer.phar update blakepro/template --ignore-platform-reqs
Usage PHP file
<?php require __DIR__ . '/vendor/autoload.php';
//HTML
$html = new blakepro\Template\Html();
//DATABASE
$pdo = new blakepro\Template\Sql(['host' => '', 'name' => '', 'user' => '', 'password' => '']);
//UTILITIES
$util = new blakepro\Template\Utilities(['encryption_key' => '']);