http-message icon indicating copy to clipboard operation
http-message copied to clipboard

PSR-7 for new and legacy applications

Results 4 http-message issues
Sort by recently updated
recently updated
newest added

When my application gets a request with a long query string (above ~3000 chars) I get an `InvalidArgumentException` saying "Invalid query '...'". This seems to be due to `preg_match` not...

When a `ServerRequest` is bound to the global environment it sets the `$_POST`, `$_GET` and `$_COOKIES` superglobal. However the `$_REQUEST` parameter, which is a combination of those three, is never...

Dealing with uploaded files requires quite a bit of logic, which is now all just in the `ServerRequest`. We should create an `UploadedFilesProcessor` class which deals with this. By default,...

When a `ServerRequest` is bound to the global environment, we modify `$_SERVER` when the request method, target and headers are set. The codeception module now does this itself, but it's...