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

https://github.com/janforman/janforman-php-framework

Minimalistic ultra-fast PHP Framework with template support, languages and modules
https://github.com/janforman/janforman-php-framework

framework modular php7 template-engine web

Last synced: 5 months ago
JSON representation

Minimalistic ultra-fast PHP Framework with template support, languages and modules

Awesome Lists containing this project

README

          

# janforman-php-framework
PHP Framework with template support, languages and modules

This is my some very old work starting at 2001 so it's very ancient, but compatible with PHP7.
It can support templates, compression, cache, modules loading and transparent language support.

# nginx snippet
location / { try_files $uri $uri/ @janforman; }
location @janforman {
rewrite ^/j-(.*) /load.php?n=$1 last;
}