Kevin 449ca1d987 first commit | il y a 4 ans | |
---|---|---|
.. | ||
src | il y a 4 ans | |
CHANGELOG.md | il y a 4 ans | |
LICENSE | il y a 4 ans | |
README.md | il y a 4 ans |
A helper class that can create ANY PSR-7 server request.
composer require nyholm/psr7-server
// Instanciate ANY PSR-17 factory implementations. Here is nyholm/psr7 as an example
$psr17Factory = new \Nyholm\Psr7\Factory\Psr17Factory();
$creator = new \Nyholm\Psr7Server\ServerRequestCreator(
$psr17Factory, // ServerRequestFactory
$psr17Factory, // UriFactory
$psr17Factory, // UploadedFileFactory
$psr17Factory // StreamFactory
);
$serverRequest = $creator->fromGlobals();