zim php
1.0.0
Zim is a simple framework inspired(copy/paste ?) by Yaf, Laravel, Symfony, based on Zephir Language.
Delivered as a C extension for the PHP language via zim-ext , or you can choose the pure php implementation zim-php
The demo project zim
composer require henter/zim
simple demo with php build-in server
index.php
<?php
require __DIR__.'/vendor/autoload.php';
use ZimZim;
use ZimRoutingRoute;
Route::get('/', function() {
return 'hello zim';
});
Zim::run();start simple server:
php -S localhost:8888
open http://localhost:8888
more usage at zim
see php version zim-php
https://github.com/henter/zim/wiki
Welcome !
MIT