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

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

vkoori/identifier-queue
=======================

This package is created for dispatching queues that have a identifier field for searching.

1.1.1(2y ago)1307PHPPHP &gt;=8.1

Since Apr 15Pushed 2y ago1 watchersCompare

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

READMEChangelog (3)Dependencies (4)Versions (5)Used By (0)

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

[](#installation)

```
composer require vkoori/identifier-queue
```

Register service providers
--------------------------

[](#register-service-providers)

### Luemn

[](#luemn)

Add this lines to `bootstrap/app.php` file.

```
$app->register(\Kooriv\Queue\Providers\QueueServiceProvider::class);
```

### Laravel

[](#laravel)

> For Laravel versions before 5.5 or if not using auto-discovery, register the service provider in config/app.php

Add connection to config/queue.php:

```
'identify' => [
    'driver' => 'identify',
    'table' => 'identify_jobs',
    'queue' => 'default',
    'retry_after' => 90,
    'after_commit' => false,
]
```

Create database table
---------------------

[](#create-database-table)

```
php artisan queue:identifier-table

php artisan migrate
```

> **Note**
>
> This table is fully compatible with the Lumen/Laravel database driver. So don't be afraid when using this table.

Dispatching job
---------------

[](#dispatching-job)

You can dispatch your jobs in the queue using the helper function below

```
dispatcher(new ExampleJob)->onConnection("identify")->onQueue("queue")->setIdentifier("identifier");
```

> **Note**
>
> If you want to set an `identifierCode`, your job must have use following trait:

```
use \Kooriv\Queue\Illuminate\Bus\Trait\IdentifierCode;
```

> **Note**
>
> Using this helper function will not cause any damage to other drivers.

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity56

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

Total

3

Last Release

1062d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/87c1574170082a3c779cca97f90846e478dcc46114fc66480fbd04975b71a746?d=identicon)[vkoori](/maintainers/vkoori)

---

Top Contributors

[![vkoori](https://avatars.githubusercontent.com/u/9253797?v=4)](https://github.com/vkoori "vkoori (12 commits)")

---

Tags

lumenqueue

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[imtigger/laravel-job-status

Laravel Job Status

5272.1M3](/packages/imtigger-laravel-job-status)[bschmitt/laravel-amqp

AMQP wrapper for Laravel and Lumen to publish and consume messages

2752.3M7](/packages/bschmitt-laravel-amqp)[shiftonelabs/laravel-sqs-fifo-queue

Adds a Laravel queue driver for Amazon SQS FIFO queues.

1556.0M3](/packages/shiftonelabs-laravel-sqs-fifo-queue)[joblocal/laravel-sqs-sns-subscription-queue

A simple Laravel service provider which adds a new queue connector to handle SNS subscription queues.

48416.3k](/packages/joblocal-laravel-sqs-sns-subscription-queue)[servocoder/lumen-horizon

Commands and code-driven configuration for Lumen queues.

2679.4k](/packages/servocoder-lumen-horizon)[mingalevme/illuminate-uqueue

Laravel/Lumen uniqueable queues (Database, Redis)

2148.0k1](/packages/mingalevme-illuminate-uqueue)

PHPackages © 2026

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