PHPackages                             relaxsd/l4-database-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. relaxsd/l4-database-queue

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

relaxsd/l4-database-queue
=========================

laravel 4 'database' queue

v1.0(9y ago)0107MITPHPPHP &gt;=5.4.0

Since Jan 15Pushed 9y ago1 watchersCompare

[ Source](https://github.com/relaxsd/l4-database-queue)[ Packagist](https://packagist.org/packages/relaxsd/l4-database-queue)[ RSS](/packages/relaxsd-l4-database-queue/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (2)Dependencies (7)Versions (3)Used By (0)

Laravel 4 'database' queue driver
=================================

[](#laravel-4-database-queue-driver)

Adds a 'database' queue driver to Laravel 4.

### Installation

[](#installation)

Use `composer require` to add this package to your `composer.json` file and install it:

```
composer require relaxsd/l4-database-queue:^1.0

```

Add the Service Provider to the providers array in config/app.php. Make sure to add it after the `Illuminate\Queue\QueueServiceProvider`.

```
    'providers' => array(

         /* Make sure to add after QueueServiceProvider */
         'Relaxsd\Queue\L4DatabaseServiceProvider'

    ),

```

### Driver Prerequisites

[](#driver-prerequisites)

#### Database

[](#database)

In order to use the `database` queue driver, you will need a database table to hold the jobs. To generate a migration that creates this table, run the `queue:table` Artisan command. Once the migration has been created, you may migrate your database using the `migrate` command:

```
php artisan queue:table

php artisan migrate

```

#### Configuration

[](#configuration)

Finally, add the `database` queue driver to `config/queue.php`:

```
   /*
    |--------------------------------------------------------------------------
    | Default Queue Driver
    |--------------------------------------------------------------------------
    */

    'default'     => 'database',

    /*
    |--------------------------------------------------------------------------
    | Queue Connections
    |--------------------------------------------------------------------------
    */

    'connections' => array(

        ...

        'database'   => array(
            'driver' => 'database',
            'table' => 'jobs',
            'queue' => 'default',
            'retry_after' => 90,
        )

    )

```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity59

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

Total

2

Last Release

3406d ago

Major Versions

v0.5 → v1.02017-01-15

### Community

Maintainers

![](https://www.gravatar.com/avatar/7682f7af65b0cef9505ca2f720f92a6aef17c1df57687185c51c1cbfb79dfe88?d=identicon)[relaxsd](/maintainers/relaxsd)

---

Top Contributors

[![mk-relax](https://avatars.githubusercontent.com/u/7390035?v=4)](https://github.com/mk-relax "mk-relax (7 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/relaxsd-l4-database-queue/health.svg)

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

###  Alternatives

[barryvdh/laravel-ide-helper

Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.

14.9k123.0M687](/packages/barryvdh-laravel-ide-helper)[illuminate/queue

The Illuminate Queue package.

20331.4M1.2k](/packages/illuminate-queue)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9682.1M97](/packages/roots-acorn)[tucker-eric/eloquentfilter

An Eloquent way to filter Eloquent Models

1.8k4.8M26](/packages/tucker-eric-eloquentfilter)[orchestra/canvas

Code Generators for Laravel Applications and Packages

21017.2M158](/packages/orchestra-canvas)[fumeapp/modeltyper

Generate TypeScript interfaces from Laravel Models

196277.9k](/packages/fumeapp-modeltyper)

PHPackages © 2026

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