-
In the current Slim 3, to create a fully qualified URL for a given route name, you need to do this inside a route callable:
``` php
$router = $this->router;
$uri = $request->getUri();
$url = $uri->g…
-
Hey, thanks for great addition to Slim!
Any plans to update this package to use Slim 2.6+ version (https://github.com/slimphp/Slim/releases)?
Thanks!
-
Im using PHPCPP to speed up components of our SlimPHP api. Is it possible to call a nested namespaced class from PHPCPP with the Php::call method.
Example: Calling the Calculator class located in ./…
-
From documentation:
```
// Define named route
$app->get('/hello/{name}', function ($request, $response, $args) {
$this['view']->render('profile.html', [
'name' => $args['name']
]);
})…
-
When no public routes set, middleware runs ok, but when add the following:
```
"rules" => [
new \Slim\Middleware\JwtAuthentication\RequestPathRule([
"path" => "/",
…
-
Please integrate Smarty fot template in Slim 3.0
-
Since the `Http\Cookies` only contains static helper methods, why is there still an interface defined? The class does not even implement the interface. (see https://github.com/slimphp/Slim/blob/develo…
-
above error pops-up after latest changes - this is interface only: Interop/Container/Exception/NotFoundException.php
-
hash_equals — Timing attack safe string comparison to check the values
-
Hey there I've written some piece of code which I believe can be used as a session management service for the upcoming version 3. Awaiting your feedback on this.
You can find it at https://github.com…