shucream0117 / slim-boost-php5
Extension Library For Slim3
Installs: 29 064
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 1
Requires
- php: >=5.5.0
- respect/validation: ^1.1
- slim/slim: ^3.1
Requires (Dev)
- phpunit/phpunit: 6.0.*
This package is auto-updated.
Last update: 2024-10-29 04:59:24 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(); },