Skip to content

krakphp/lava

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

66 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Lava

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();