-
Remove encryption from core and remove Zend/Crypt as a hard requirement. We can move encryption into an optional middleware that can act on cookies, session, or both. As requested by @akrabat at https…
-
I see slim v2 have method to overwrite response body (need for compress output, minify string, ...)
but v3 only append method ?
-
I've been looking at the resolution of a callable string of type 'class:method' which is in the Route class at https://github.com/slimphp/Slim/blob/develop/Slim/Route.php#L101-L118.
It would be nice …
-
I'm taking the time to learn Slim 3.x after learning about it from Josh, and I came across this function in the Router. It's very helpful, but it's a misnomer in that it doesn't actually provide URLs …
-
Per http://tools.ietf.org/html/rfc7231
-
Assigning this to me.
-
We ran into this scenario on our last major Slim 2 project:
The site used authentication for user accounts and such, but much of the content was viewable whether or not you were logged-in. Authentica…
-
After Slim switch to use FastRoute, the option `routes.case_sensitive` become meaningless even its value is true.
So now `/Tests/` and `/tests/` are difference :D
ghost updated
9 years ago
-
First I am sorry if this topic has already been discussed, I did a search but couldn't find something about it.
In Slim 3 it seems that controllers are supposed to be middlewares, i.e. have the follo…
-
https://github.com/slimphp/Slim/blob/master/Slim/Middleware/SessionCookie.php#L127
Generally, it's a bad idea to blindly `unserialize()` user-controllable input.
https://www.owasp.org/index.php/PHP_…