Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/bennetgallein/angleframework
- Owner: bennetgallein
- Created: 2018-04-18T19:32:15.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-11-14T17:35:03.000Z (over 1 year ago)
- Last Synced: 2024-03-14T22:23:02.284Z (11 months ago)
- Language: PHP
- Homepage: https://streamtitties.fun
- Size: 94.7 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 }
```