henter / zim
There is no license information available for the latest version (1.0.0) of this package.
The Zim Framework
1.0.0
2019-01-11 08:56 UTC
Requires
- php: ^7.1.3
Requires (Dev)
- phpunit/phpunit: ^7.5
This package is auto-updated.
Last update: 2024-10-29 05:28:35 UTC
README
About
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
Requirements
- PHP >= 7.0
- Composer
Install
composer require henter/zim
Usage
simple demo with php build-in server
index.php
<?php require __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
more usage at zim
Tests
see php version zim-php
Documentation
https://github.com/henter/zim/wiki
Contributing
Welcome !
Licence
MIT