lars / simple-router
There is no license information available for the latest version (0.0.1) of this package.
Supersimple router for mocking
0.0.1
2020-05-26 22:32 UTC
This package is auto-updated.
Last update: 2025-03-27 08:52:27 UTC
README
Just supersimple routing.. probably one of 10000 other super simple routing packages
So simple that it does not even work :D
Examples
GET /base?whaterver
SimpleRouter::setup("/base")->get('/', function () {
return SimpleRouter::json(["hej", "å", "hå"]);
});
GET /base/sub?whaterver
SimpleRouter::setup("/base")->get('/sub', function () {
return SimpleRouter::json(["hej", "å", "hå"]);
});
GET /base/sub/param1/param2
SimpleRouter::setup("/base")->get('/sub', function ($p1, $p2) {
return SimpleRouter::json(["hej", "å", "hå"]);
});
GET /base/sub?what=ever
SimpleRouter::setup("/base")->get('/sub', function () {
return SimpleRouter::json(["hej", "å", SimpleRouter::params('what')]);
});
GET /base
SimpleRouter::setup("/base")->get('/', function () {
do_something_but_dont_return_anything();
});