php_slim - taka512/memo GitHub Wiki
slimフレームワークのあれこれ
公式
https://www.slimframework.com/
インストール
php composer.phar create-project slim/slim-skeleton sample_slim
twigを使う
DBを使う
Eloquent
https://github.com/illuminate/database
https://laravel.com/docs/5.4/eloquent
tips
404ステータスで文字列表示
$app->get('/', function ($request, $response, $args) {
return $response->withStatus(404)->write('Hello World!');
});
デフォルトの404テンプレート
return $this->container->get('notFoundHandler')($request, $response);