PHPackages                             marko/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. marko/queue

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

marko/queue
===========

Queue interfaces and infrastructure for Marko Framework

0.7.0(4w ago)0129—0%5MITPHPPHP ^8.5

Since Mar 25Pushed 4w agoCompare

[ Source](https://github.com/marko-php/marko-queue)[ Packagist](https://packagist.org/packages/marko/queue)[ RSS](/packages/marko-queue/feed)WikiDiscussions develop Synced 3w ago

READMEChangelogDependencies (12)Versions (18)Used By (5)

marko/queue
===========

[](#markoqueue)

Queue interfaces and worker infrastructure -- defines how jobs are dispatched and processed, not which backend stores them.

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

[](#installation)

```
composer require marko/queue
```

Note: You also need a driver package. See `marko/queue-sync`, `marko/queue-database`, or `marko/queue-rabbitmq`.

Quick Example
-------------

[](#quick-example)

```
use Marko\Queue\Job;
use Marko\Queue\QueueInterface;

class SendWelcomeEmail extends Job
{
    public function __construct(
        private readonly string $email,
    ) {}

    public function handle(): void
    {
        // Send the email...
    }
}

// Dispatch via QueueInterface
$queue->push(new SendWelcomeEmail('user@example.com'));
```

Documentation
-------------

[](#documentation)

Full usage, API reference, and examples: [marko/queue](https://marko.build/docs/packages/queue/)

###  Health Score

45

—

FairBetter than 91% of packages

Maintenance94

Actively maintained with recent releases

Popularity14

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity50

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~4 days

Recently: every ~13 days

Total

16

Last Release

28d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/437029?v=4)[Mark Shust](/maintainers/markshust)[@markshust](https://github.com/markshust)

---

Top Contributors

[![markshust](https://avatars.githubusercontent.com/u/437029?v=4)](https://github.com/markshust "markshust (28 commits)")

###  Code Quality

TestsPest

### Embed Badge

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

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

PHPackages © 2026

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