2017 © Pedro Peláez
 

library lava

Micro framework with massive potential

image

krak/lava

Micro framework with massive potential

  • Sunday, September 17, 2017
  • by ragboyjr
  • Repository
  • 1 Watchers
  • 1 Stars
  • 73 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 13 Open issues
  • 11 Versions
  • 0 % Grown

The README.md

Lava

Micro-framework with massive potential., (*1)

Installation

Install with composer at krak/lava, (*2)

Usage

<?php

use Krak\Lava;

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

$app->serve();

The Versions