All notable changes to this project will be documented in this file, in reverse chronological order by release.
Psr7ServerRequest::convertUploadedFiles()
to ensure that the
tmp_name
is provided to the $_FILES
structure from the PSR-7 uploaded
files.Psr7ServerRequest::convertFilesToUploaded()
to iterate the
entire value provided it, instead of a fictitious file
key.Psr7ServerRequest::fromZend()
to inject the generated PSR-7 request
instance with the zend-http cookies.Zend\Psr7Bridge\Zend\Request
's constructor to call setUri()
instead of
setRequestUri()
.Initial release!
Zend\Psr7Bridge\Psr7ServerRequest::toZend($request, $shallow = false)
allows
converting a Psr\Http\Message\ServerRequestInterface
to a
Zend\Http\PhpEnvironment\Request
instance. The $shallow
flag, when
enabled, will omit the body content, body parameters, and upload files from
the zend-http request (e.g., for routing purposes).