dmt-software/laravel-guzzle-psr7

Use guzzle for PSR-7 server-request and response in Laravel 6 and up.

v2.0.0 2022-04-20 14:48 UTC

This package is auto-updated.

Last update: 2024-04-20 19:30:58 UTC


README

Enable Guzzle to act as provider for PSR-7 compliant ServerRequestInterface instances in Laravel.

Installation

composer require dmt-software/laravel-guzzle-psr7

The service provider maybe automatically registered by auto-discovery. To register it manually add is to _config/app.php:

'providers' => [
    DMT\Laravel\Providers\GuzzlePsrServiceProvider::class,
    // ...
];

Usage

use Psr\Http\Message\ServerRequestInterface;
 
Route::get('/', function (ServerRequestInterface $request) {
    // 
});