This is a small and elegant PHP framework to accelerate the creation of websites and applications. created by ceffas
start now
composer install
start serve
php fast serve
start code
# web/routes/uri.php
use Fastkit\libs\Http as Route;
use Fastkit\libs\View;
Route::get('/', function () {
echo "hello world";
});