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

https://github.com/kykurniawan/metime

Metime PHP
https://github.com/kykurniawan/metime

php web

Last synced: 3 months ago
JSON representation

Metime PHP

Awesome Lists containing this project

README

          

# Metime PHP

Express JS-like PHP framework

## Simple usage

```php
get("home", function (Req $req, Res $res) {
return $res->markdown("# Home Page")->send();
});

// Create application
$app = new App;
// Setup base url
$app->setBaseUrl("http://127.0.0.1/");
// Add router to the application
$app->addRouter($router);
// Run application
$app->run();
```