2017 © Pedro Peláez
 

library keyzen

A PHP light weight MVC framework

image

kirsantov/keyzen

A PHP light weight MVC framework

  • Saturday, January 18, 2014
  • by kirsantov
  • Repository
  • 1 Watchers
  • 1 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

keyzen

PHP Lite Framework, (*1)

Начало работы

The most basic example is including the routing module and defining a few endpoints and providing a callback function that executes when someone requests that page., (*2)

KeyZ\App::init('config/config.php');
KeyZ\App::run();

function home() {
    echo 'You are at the home page';
}

function contactUs() {
    echo 'Send us an email at <a href="mailto:foo@bar.com">foo@bar.com</a>';
}

The Versions

18/01 2014

dev-master

9999999-dev

A PHP light weight MVC framework

  Sources   Download

MIT

The Requires

 

by Anatolii Kirsantov