Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/krakphp/lava

Micro framework with massive potential
https://github.com/krakphp/lava

full-stack lava micro-framework modular

Last synced: about 2 months ago
JSON representation

Micro framework with massive potential

Awesome Lists containing this project

README

        

# Lava

Micro-framework with massive potential.

## Installation

Install with composer at `krak/lava`

## Usage

```php
routes(function($r) {
$r->get('/hello/{name}', function($name) {
return "Hello $name!";
});
});

$app->serve();
```