gmarche/vendor/http-interop/response-sender/README.md

26 lines
392 B
Markdown

# HTTP Response Sender
A simple function that will send PSR-7 `ResponseInterface` headers and body.
## Installation
```php
composer require http-interop/response-sender
```
## Usage
```php
use function Http\Response\send;
// Any ResponseInterface instance can be used.
$notFound = $responseFactory->createResponse(404);
// Send headers and body.
send($notFound);
```
## License
MIT