- Notifications
You must be signed in to change notification settings - Fork3
henter/zim
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
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 viazim-ext , or you can choose the pure php implementationzim-php
- PHP >= 7.0
- Composer
build php extension fromzim-ext
or
install php implementation with composer
composer require henter/zim
simple demo with php build-in server
index.php
<?phprequire__DIR__.'/vendor/autoload.php';use \Zim\Zim;use \Zim\Routing\Route;Route::get('/',function() {return'hello zim';});Zim::run();
start simple server:
php -S localhost:8888
see php versionzim-php
https://github.com/henter/zim/wiki
Welcome !
MIT