krak/lava

Micro framework with massive potential

Installs: 85

Dependents: 1

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 13

pkg:composer/krak/lava

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

This package is auto-updated.

Last update: 2025-09-18 21:01:16 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();