PHPackages                             pogo/laravel-queue - 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. [Queues &amp; Workers](/categories/queues)
4. /
5. pogo/laravel-queue

ActiveLibrary[Queues &amp; Workers](/categories/queues)

pogo/laravel-queue
==================

Pogo Queue Driver for Laravel

0.0.10(1mo ago)0107[1 PRs](https://github.com/y-l-g/laravel-queue/pulls)MITPHPPHP ^8.5

Since Jan 8Pushed 1mo agoCompare

[ Source](https://github.com/y-l-g/laravel-queue)[ Packagist](https://packagist.org/packages/pogo/laravel-queue)[ RSS](/packages/pogo-laravel-queue/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (4)Versions (7)Used By (0)

Pogo Queue Driver for Laravel
=============================

[](#pogo-queue-driver-for-laravel)

Laravel queue driver for the FrankenPHP Queue v2 module.

The driver expects a FrankenPHP binary compiled with the `pogo_queue` module and a production `backend redis` Caddy configuration. Jobs are delivered at least once, so handlers must be idempotent.

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

[](#installation)

```
composer require pogo/laravel-queue
```

Configuration
-------------

[](#configuration)

```
'pogo' => [
    'driver' => 'pogo',
    'queue' => env('POGO_QUEUE', 'default'),
    'retry_after' => 90,
],
```

```
QUEUE_CONNECTION=pogo
POGO_QUEUE=default
POGO_REDIS_URL=redis://redis:6379/0
```

Delayed dispatch is supported through Laravel's normal `later()` / `dispatch()->delay()` APIs.

Worker
------

[](#worker)

Run jobs through a FrankenPHP worker entrypoint and construct `PogoJob` from the delivery envelope sent by the module:

```
$delivery = json_decode($message, true, flags: JSON_THROW_ON_ERROR);
$job = PogoJob::fromDelivery($app, $app['queue']->connection('pogo'), $delivery);
$app['queue.worker']->process('pogo', $job, new WorkerOptions());
```

`PogoJob::delete()`, `release()`, and `fail()` acknowledge, retry, or dead-letter the Redis Streams delivery.

###  Health Score

41

—

FairBetter than 87% of packages

Maintenance90

Actively maintained with recent releases

Popularity12

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 75% 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.

###  Release Activity

Cadence

Every ~33 days

Total

5

Last Release

45d ago

PHP version history (2 changes)v0.0.5PHP ^8.4

v0.0.9PHP ^8.5

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/559468?v=4)[y-l](/maintainers/y-l)[@Y-L](https://github.com/Y-L)

---

Top Contributors

[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (3 commits)")[![y-l-g](https://avatars.githubusercontent.com/u/116063953?v=4)](https://github.com/y-l-g "y-l-g (1 commits)")

### Embed Badge

![Health badge](/badges/pogo-laravel-queue/health.svg)

```
[![Health](https://phpackages.com/badges/pogo-laravel-queue/health.svg)](https://phpackages.com/packages/pogo-laravel-queue)
```

###  Alternatives

[unopim/unopim

UnoPim Laravel PIM

10.5k2.4k](/packages/unopim-unopim)[bagisto/bagisto

Bagisto Laravel E-Commerce

27.6k172.1k9](/packages/bagisto-bagisto)[statamic-rad-pack/runway

Eloquently manage your database models in Statamic.

135224.7k7](/packages/statamic-rad-pack-runway)[api-platform/laravel

API Platform support for Laravel

58171.6k14](/packages/api-platform-laravel)[ecotone/laravel

Ecotone for Laravel — CQRS, Event Sourcing, Sagas, Durable Workflows, and Outbox on top of Laravel Queue, via PHP attributes.

21318.6k3](/packages/ecotone-laravel)[duncanmcclean/statamic-cargo

Comprehensive e-commerce addon for Statamic. Build bespoke e-commerce sites without the complexity.

3417.0k](/packages/duncanmcclean-statamic-cargo)

PHPackages © 2026

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