Slim 3 is the successor to Slim 2, a micro framework for PHP.
How I can get all get/ put/ post variables like in Slim 2 for Slim 3? Slim 2, $allGetVars = $app->request->…
slim slim-3 psr-7I am creating an API using the Slim framework. Currently I use a single file to create the route and …
php controller slim slim-3Before the Slim 3 is released, codes below work fine: settings.php, return [ 'settings' => [ 'displayErrorDetails' => true, 'modules' => [ 'core' =&…
php slim-3I want to get the name of the current I route in a middleware class. Previously (in Slim 2.*) you could …
php slim slim-3I've been reading that in Slim v2, $app was bound to the middleware class. I'm finding this not to be …
php slim slim-3I am trying to use the ValidationErrorsMiddleware.php class as a middleware, so I added the following code to my …
php slim slim-3 respect-validationI'm using slim-jwt-auth to create token based authentication for a JSON API. The docs are very helpful, but one thing …
php jwt slim-3I want to check if a user is logged in. Therefor I have an Class witch returns true or false. …
php authentication slim slim-3