bennetgallein / angle-framework
A PHP Framework for the Angle Network
Installs: 4 452
Dependents: 2
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 1
Open Issues: 0
Type:project
Requires
- php: >=8.0
- fig/http-message-util: ^1.1
- mikey179/vfsstream: ^1.6
Requires (Dev)
- tracy/tracy: ^2.1
README
Template Engine
Basic Documentation: The first line is the template language and the second is the PHP equivalent
Installation
Please use this Engine only with composer:
"repositories": [{ "type": "composer", "url": "https://packages.streamtitties.fun" }],
And
"require": {
"bennetgallein/angle-framework": "dev-master"
},
TODO:
- implement native Logging to a file with different important steps.
echo Variable
{ :varname }
<?= $varname; ?>
set Variable
{ :varname = 1 }
<?php $varname = 1; ?>
foreach Loops
{ foreach :entry in :list}
<?php foreach ($list as $entry): ?>
{ foreach :entry in :list with :key }
<?php foreach ($list as $key => $entry): ?>
{ endforeach }
<?php endforeach; ?>