PHPackages                             mocavo/queued-http-client - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [HTTP &amp; Networking](/categories/http)
4. /
5. mocavo/queued-http-client

AbandonedArchivedLibrary[HTTP &amp; Networking](/categories/http)

mocavo/queued-http-client
=========================

Laravel package to queued up HTTP calls for later delivery

41801PHP

Since Mar 27Pushed 12y ago10 watchersCompare

[ Source](https://github.com/mocavo/queued-http-client)[ Packagist](https://packagist.org/packages/mocavo/queued-http-client)[ RSS](/packages/mocavo-queued-http-client/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (1)Used By (0)

queued-http-client
==================

[](#queued-http-client)

Summary
-------

[](#summary)

A queue-backed callback system is designed to add an extra layer of resiliency in communications between APIs on different systems.

Traditionally signaling another API via a synchronous callback required the receiving system to be perpetually available to receive the message. As process flow may rely on the success of this callback, systems can get into inconsistent/out-of-sync states when a callback message fails to be received by the remote system.

Using a local queue to store callback messages allows a completely asynchronous process to be responsible for delivering the callback messages. This decoupling has two primary benefits- first, the original process is no longer responsible for assuring delivery of the callback message and handling communication errors, and second, the primary process is accelerated by not synchronously waiting for the callback to complete.

Installation
------------

[](#installation)

Add `mocavo/queued-http-client` to `composer.json`.

```
    "mocavo/queued-http-client": "dev-master"
```

Run `composer update` to pull down QueuedHttpClient.

Now open up `app/config/app.php` and add the service provider to your `providers` array.

```
    'providers' => array(
        'Mocavo\QueuedHttpClient\QueuedHttpClientServiceProvider',
    )
```

and the alias:

```
    'aliases' => array(
        'QueuedHttpClient'         => 'Mocavo\QueuedHttpClient\Facades\QueuedHttpClient',
    )
```

Usage
-----

[](#usage)

*To be added*

Processing the Callback Queue
-----------------------------

[](#processing-the-callback-queue)

php artisan queue:listen --queue="queued\_http\_requests"

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 69.2% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/977747d2432a9a1127f0e7d30628ec6b35154afc38cd689ffb0ebea4bf60c2d7?d=identicon)[richardkmiller](/maintainers/richardkmiller)

---

Top Contributors

[![richardkmiller](https://avatars.githubusercontent.com/u/563438?v=4)](https://github.com/richardkmiller "richardkmiller (9 commits)")[![mattgarner84](https://avatars.githubusercontent.com/u/4434039?v=4)](https://github.com/mattgarner84 "mattgarner84 (4 commits)")

### Embed Badge

![Health badge](/badges/mocavo-queued-http-client/health.svg)

```
[![Health](https://phpackages.com/badges/mocavo-queued-http-client/health.svg)](https://phpackages.com/packages/mocavo-queued-http-client)
```

###  Alternatives

[friendsofsymfony/rest-bundle

This Bundle provides various tools to rapidly develop RESTful API's with Symfony

2.8k73.3M319](/packages/friendsofsymfony-rest-bundle)[php-http/discovery

Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations

1.3k309.5M1.2k](/packages/php-http-discovery)[nyholm/psr7

A fast PHP7 implementation of PSR-7

1.3k235.4M2.4k](/packages/nyholm-psr7)[pusher/pusher-php-server

Library for interacting with the Pusher REST API

1.5k94.8M293](/packages/pusher-pusher-php-server)[spatie/crawler

Crawl all internal links found on a website

2.8k16.3M52](/packages/spatie-crawler)[react/http

Event-driven, streaming HTTP client and server implementation for ReactPHP

78126.4M414](/packages/react-http)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
