krak/lava

Micro framework with massive potential

v0.3.4 2017-05-13 02:14 UTC

This package is auto-updated.

Last update: 2024-03-18 17:30:09 UTC


README

Micro-framework with massive potential.

Installation

Install with composer at krak/lava

Usage

<?php

use Krak\Lava;

$app = new Lava\App();
$app->routes(function($r) {
    $r->get('/hello/{name}', function($name) {
        return "Hello $name!";
    });
});

$app->serve();