kirsantov / keyzen
A PHP light weight MVC framework
dev-master
2014-01-18 10:23 UTC
Requires
- jms/serializer: @stable
- php-activerecord/php-activerecord: v1.1.2
Suggests
- symfony/routing: To use the SymfonyRouteFactory.
- symfony/yaml: To use yaml based configuration.
This package is not auto-updated.
Last update: 2025-03-25 10:09:41 UTC
README
PHP Lite Framework
Начало работы
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.
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>';
}