Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bennetgallein/angleframework

Template & Routing Engine in PHP
https://github.com/bennetgallein/angleframework

Last synced: 3 months ago
JSON representation

Template & Routing Engine in PHP

Awesome Lists containing this project

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:
```json
"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 }

```
###### foreach Loops
```
{ foreach :entry in :list}

{ foreach :entry in :list with :key }
$entry): ?>

{ endforeach }

```