-
Currently Slim 3.0 allows specifying a Pimple key when defining route callbacks, in the form: `key.callback`, as per [this line](https://github.com/slimphp/Slim/blob/develop/Slim/ResolveCallable.php#L…
-
HI,
Would it be quicker and more efficient to use `SplStack` as the `$stack` instance instead of calling `array_unshift` for every appended middleware?
``` php
protected $stack;
protected function …
-
I don't know if anyone has brought this up before, or if I'm missing something fundamental about how middleware operates, has anyone considered before and after scenarios?
What I mean is middleware t…
-
It seems a bit strange that route & application middleware have completely different signatures, and as such are not interchangeable. Is there a particular reason for this, as I think it will restrict…
-
While defining route we can attach middleware at the group level, on my point of view that's in fact a kind of helper to prefix a bunch of routes since there is no more group at the dispatch time.
So …
lalop updated
9 years ago
-
Is there a changelog available somewhere? I want to be able to update all my production apps but I don't know if there are any breaking changes in v2.6.1 as compared to 2.5.0.
In the meantime, I coul…
-
I see that `Route::run()`sets `$this->parsedArgs`, but how do I access this from route middleware?
For clarification, I'm looking at how I could add route middleware that sanitised the route's named …
-
We currently have two excellent classes from @designermonkey that enable powerful configuration management for Slim. However, we only have 6 default application settings for cookie default properties …
-
I was thinking. Maybe it is intresting to add Curl php support in slim.
-
Looking at https://github.com/slimphp/Slim/blob/develop/Slim/Crypt.php...
1. The IV is not included in the HMAC. It needs to be, otherwise you can modify the IV to modify the plaintext.
2. It uses `MC…