-
For now you need to add ...
```
"minimum-stability": "dev"
```
To your composer.json for slim to install
[Edit] or add
```
"nikic/fast-route": "dev-master"
```
to your main composer.json
-
Slim doesn't support optional parameters as the underlying routing engine doesn't support them.
We need:
- Ability to specify optional parameters in the route path
- Ability to generate urls via `url…
-
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 …
-
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…
-
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 …