shucream0117/slim-boost-php5

Extension Library For Slim3

dev-master 2019-09-30 05:46 UTC

This package is auto-updated.

Last update: 2024-03-29 03:32:21 UTC


README

  • Slim3
  • PHP ≧ 5.5.x

https://github.com/shucream0117/slim-boost をPHP5に対応させました

Routes Example

$app->get("/", IndexController::class . ':showIndex');

$app->get("/users/{user_id:[0-9]+}", UserController::class . ':showUserById');

Setting Example

'foundHandler' => function () {
    return new FoundHandler();
},