Simple PSR-7 compatible response sender.
composer require lazzard/psr7-response-sender
<?php
use GuzzleHttp\Psr7\Response;
use Lazzard\Psr7ResponseSender\Sender;
$response = new Response;
$sender = new Sender;
$sender->send($response);
// OR
$sender($response);
Run the PHPUnit tests :
vendor/bin/phpunit
Special thanks to our supporters :
MIT License. please see the LICENSE FILE for more information.