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

https://github.com/hazardland/router.php

Simpliest Laravel like router one class one file router
https://github.com/hazardland/router.php

php-router php-router-standalone

Last synced: about 2 months ago
JSON representation

Simpliest Laravel like router one class one file router

Awesome Lists containing this project

README

          

```php
$id]);
})
->name('news') //short key of route
->type('id','int'); //restrict type of id

/*
call some method of class
*/
app::post ('news/publish','home.index');

app::run();

//get current locale
app::locale();
app::url('news',5);