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

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

levmv/mii-queue
===============

Mii queue extension

v1.1.0(3y ago)14.9kMITPHPPHP &gt;=7.4

Since Sep 17Pushed 3y ago1 watchersCompare

[ Source](https://github.com/levmv/mii-queue)[ Packagist](https://packagist.org/packages/levmv/mii-queue)[ RSS](/packages/levmv-mii-queue/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (8)Dependencies (1)Versions (9)Used By (0)

mii-queue
=========

[](#mii-queue)

*Inspired by yii2-queue*

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

[](#installation)

```
composer require levmorozov/mii-queue

```

Basic Usage
-----------

[](#basic-usage)

Each task which is sent to queue should be defined as a separate class.

```
class EmailJob extends Job
{
    public $to;
    public $body;

    public function execute($queue)
    {
        Mii::$app->mailer()->to($this->to)->body($body)->send();
    }
}
```

Here's how to send a task into the queue:

```
Mii::$app->emailqueue->push(new EmailJob([
    'to' => 'mail@yiiframework.com',
    'body' => 'Hi guys! Thank you for your framework!',
]));
```

To execute task you need to start console command:

```
# This command executes tasks in a loop until the queue is empty:
mii queue run --queue=emailqueue

# This command launches a daemon which infinitely queries the queue:
mii queue listen --queue=emailqueue
```

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity19

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity63

Established project with proven stability

 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 ~163 days

Recently: every ~224 days

Total

8

Last Release

1280d ago

Major Versions

v0.3.2 → v1.0.0-rc.42020-10-19

PHP version history (3 changes)v0.1.0PHP &gt;=7.1

v0.2.0PHP &gt;=7.2

v0.3.0PHP &gt;=7.4

### Community

Maintainers

![](https://www.gravatar.com/avatar/ae48ecbb2539ddf9a3b584a3cdb5bae25c76fd0cc8e8334abc6b4619b3224ed9?d=identicon)[levmv](/maintainers/levmv)

---

Top Contributors

[![levmv](https://avatars.githubusercontent.com/u/979251?v=4)](https://github.com/levmv "levmv (25 commits)")

### Embed Badge

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

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

###  Alternatives

[league/geotools

Geo-related tools PHP 7.3+ library

1.4k5.3M26](/packages/league-geotools)[amphp/parser

A generator parser to make streaming parsers simple.

14952.8M16](/packages/amphp-parser)[amphp/serialization

Serialization tools for IPC and data storage in PHP.

13451.1M18](/packages/amphp-serialization)[enqueue/enqueue

Message Queue Library

19820.0M56](/packages/enqueue-enqueue)[deliciousbrains/wp-background-processing

WP Background Processing can be used to fire off non-blocking asynchronous requests or as a background processing tool, allowing you to queue tasks.

1.1k409.8k6](/packages/deliciousbrains-wp-background-processing)[react/async

Async utilities and fibers for ReactPHP

2238.8M170](/packages/react-async)

PHPackages © 2026

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