wimski/laravel-psr-http

PSR HTTP setup for Laravel
34,218 1
Install
composer require wimski/laravel-psr-http
Latest Version:v4.0.0
PHP:^8.3
License:MIT
Last Updated:Jul 10, 2026
Links: GitHub  ·  Packagist
Maintainer: wimski

Latest Stable Version Coverage Status PHPUnit PHPStan

Laravel PSR HTTP

This package provides Laravel bindings to make PSR HTTP requests using discovery.

Install

composer require wimski/laravel-psr-http

Usage example

<?php

declare(strict_types=1);

namespace App\Console\Commands;

use Illuminate\Console\Command;
use Psr\Http\Client\ClientExceptionInterface;
use Psr\Http\Client\ClientInterface;
use Psr\Http\Message\RequestFactoryInterface;
use Psr\Http\Message\StreamFactoryInterface;

class TestCommand extends Command
{
    protected $signature = 'http:test';
    protected $description = 'Test the HTTP client';

    public function __construct(
        protected ClientInterface $httpClient,
        protected RequestFactoryInterface $requestFactory,
        protected StreamFactoryInterface $streamFactory,
    ) {
        parent::__construct();
    }

    public function handle(): void
    {
        $stream = $this->streamFactory->createStream(json_encode([
            'title'  => 'foo',
            'body'   => 'bar',
            'userId' => 1,
        ]));

        $request = $this->requestFactory->createRequest('POST', 'https://jsonplaceholder.typicode.com/posts')
            ->withHeader('Content-type', 'application/json; charset=UTF-8')
            ->withBody($stream);

        try {
            $response = $this->httpClient->sendRequest($request);
            dump(json_decode((string) $response->getBody(), true));
        } catch (ClientExceptionInterface $exception) {
            dump($exception->getMessage());
        }
    }
}

Related Packages

garbetjie/http-request-logger

A request logger that can log all incoming & outgoing requests and responses.

1,858 5
eleme/laravel-guzzle

laravel guzzle service provider

6,607 6
kozz/laravel-guzzle-provider

Guzzle 5/6 Service Provider for Laravel

1,107,265 62
vjroby/laravel-nonce

This is a package for integrating nonces in Laravel in requests

42,757 3
php-http/laravel-httplug

Laravel package to integrate the Httplug generic HTTP client into Laravel

110,124 12