Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/krakphp/lava
- Owner: krakphp
- Created: 2017-03-12T10:08:09.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-17T03:08:35.000Z (over 7 years ago)
- Last Synced: 2024-05-04T05:41:31.787Z (9 months ago)
- Topics: full-stack, lava, micro-framework, modular
- Language: PHP
- Homepage:
- Size: 88.9 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
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();
```