davidecesarano / embryo-http
A PSR-7 and PSR-17 implementation for HTTP messages and factory.
Installs: 5 060
Dependents: 15
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 0
Open Issues: 0
Requires
- php: >=7.1
- psr/http-factory: 1.0.0
- psr/http-message: 1.0.1
Requires (Dev)
- phpstan/phpstan: ^0.12.47
This package is auto-updated.
Last update: 2024-10-20 22:25:37 UTC
README
A PSR-7 and PSR-17 implementation for HTTP messages and factory. An HTTP message is either a request from a client to a server or a response from a server to a client. An HTTP factory is a method by which a new HTTP object, as defined by PSR-7, is created.
Requirements
- PHP >= 7.1
Installation
Using Composer:
$ composer require davidecesarano/embryo-http
Factory
RequestFactory
$request = (new RequestFactory)->createRequest('GET', 'http://example.com');
ResponseFactory
$response = (new ResponseFactory)->createResponse(200);
ServerRequestFactory
// create a new server-side request $request = (new ServerRequestFactory)->createServerRequest('GET', 'http://example.com'); // create a new server-side request from server $request = (new ServerRequestFactory)->createServerRequestFromServer();
StreamFactory
// create a new stream from a string $stream = (new StreamFactory)->createStream('Hello World!'); // create a stream from an existing file $stream = (new StreamFactory)->createStreamFromFile('/path/file'); // create a new stream from an existing resource $resource = fopen('php://temp', 'w+'); $stream = (new StreamFactory)->createStreamFromResource($resource);
UploadedFileFactory
// create a new uploaded file $file = (new StreamFactory)->createStreamFromFile('/path/file'); $upload = (new UploadedFileFactory)->createUploadedFile($file); // create a new uploaded file from server $upload = (new UploadedFileFactory)->createUploadedFileFromServer($_FILES);
UriFactory
// create new uri from string $uri = (new UriFactory)->createUri('http://example.com'); // create new uri from server $uri = (new UriFactory)->createUriFromServer($_SERVER);