-
Hello again :smile:
> Note this is for Slim 3
Looking at docs on [Middleware](http://www.slimframework.com/docs/concepts/middleware.html), and [Router](http://www.slimframework.com/docs/objects/rou…
-
`mouf/pimple-interop` is based on Pimple 1. The Pimple project is currently on version 3.0.2. We probably don't want to be recommending Pimple 1.
-
I'm beginning to think that basePath is more of a hinderance than a help in Uri!
Consider a very usual use case of a view item page where you want to redirect if the item cannot be found. The basic r…
-
What are your thoughts about supporting the PSR-7 request and response interfaces in the Request/Response strategy instead of a hard dependency on Symfony HTTP foundation?
-
According to http://php.net/manual/en/language.types.callable.php it should be possible to do
// Type 2: Static class method call
call_user_func(array('MyClass', 'myCallbackMethod'));
but it does n…
-
I noticed that when I make a PUT request to my Slim application it does not parse the body of the request unless I explicitly specified a Request Content-Type Header of "application/x-www-form-urlenco…
-
During testing, I found that I was getting a "Content-Type: text/html; charset=UTF-8" header being sent when I was creating a 204 No Content page (in Slim 3 RC 2 within \Slim\App::finalize and \Slim\A…
-
https://github.com/slimphp/Slim/blob/develop/Slim/App.php#L314
``` php
if ($hasBody) {
$body = $response->getBody(); //Returns the PSR Steam Interface
if (…
-
Looking at the `Container` code, I see the following
``` php
public function __construct(array $values = [])
{
parent::__construct($values);
$userSettings = isset($values['se…
-
Hi @nikic, do you have any idea when you will tag the optional route param changes you made?