-
One pain point for me in Slim 2.x was how to do input validation and sanitization. Retrieving values from the request object's `->get()` and `->post()` always return raw, unfiltered data. To turn it i…
-
Hi!
Thanks for the nice library. I would like to suggest some middlewares, I will make a seperate issue for each request.
It would be nice to have middleware for CSRF protection. I think the Slim-C…
-
Given the test XML:
``` xml
JoshHEAD
```
I would expect Slim's method override (in Slim\Http\Request) to change the request type from the original to "HEAD". However, passing that string in as the r…
-
Using the following (not pretty I know)
``` php
-
I know how to create a cache page with plain php, for instance,
```
// @ref: http://wesbos.com/simple-php-page-caching-technique/
//
// define the path and name of cached file
$cachef…
-
See https://github.com/slimphp/Slim/issues/1462
We should document that `/test` and `/test/` are different and if you want one route to cover both, the you use `/test[/]`.
-
My site needs a page that returns very large amounts of text, on the order of several hundred MB. Slim's output buffering makes this problematic: not only does it use lots of memory, but nothing shows…
-
Currently, if an error occurs anywhere in my slim based API, if gets caught in Slim.php:1407 handleErrors.
There, while debugging, I can see the 'correct' **$errorstr** with some usefull error messag…
flyon updated
8 years ago
-
From https://github.com/slimphp/Slim/issues/1275#issuecomment-110006099:
> Can we stop coupling the ServiceProvider with the actual code for the package. I see this is becoming a pattern that others …
-
… when no file is supplied.
That is, I have a form for uploading images, and sometimes we don't want an image. Reading the comment on `$request->getUploadedFiles()`: `@return array An array tree of U…