Download the PHP package kgiedrius/laravel-random-job-database-queue-driver without Composer
On this page you can find all versions of the php package kgiedrius/laravel-random-job-database-queue-driver. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download kgiedrius/laravel-random-job-database-queue-driver
More information about kgiedrius/laravel-random-job-database-queue-driver
Files in kgiedrius/laravel-random-job-database-queue-driver
Download kgiedrius/laravel-random-job-database-queue-driver
More information about kgiedrius/laravel-random-job-database-queue-driver
Files in kgiedrius/laravel-random-job-database-queue-driver
Vendor kgiedrius
Package laravel-random-job-database-queue-driver
Short Description Modified Database Queue driver which takes pushed jobs in random order
License MIT
Package laravel-random-job-database-queue-driver
Short Description Modified Database Queue driver which takes pushed jobs in random order
License MIT
Please rate this library. Is it a good library?
Informations about the package laravel-random-job-database-queue-driver
Laravel 5 Random Job Queue Driver
Just like the database queue driver, but process jobs in random order.
Install
Require the latest version of this package with Composer
composer require KGiedrius/laravel-random-job-database-queue-driver:"1.x"
Add the Service Provider to the providers array in config/app.php
KGiedrius\Queue\DbRandServiceProvider::class,
You need to create the migration table for queues and run it.
$ php artisan queue:table
$ php artisan migrate
In config/queue.php.
'default' => 'DbRand',
'connections' => array(
'DbRand' => array(
'driver' => 'DbRand',
'table' => 'jobs',
'queue' => 'default',
'expire' => 60,
),
...
}
For more info see http://laravel.com/docs/queues
All versions of laravel-random-job-database-queue-driver with dependencies
PHP Build Version
Package Version
Requires
php Version
>=5.5.0
illuminate/support Version 5.0.x|5.1.x|5.2.x
illuminate/console Version 5.0.x|5.1.x|5.2.x
symfony/process Version ~2.6|~3.0
illuminate/support Version 5.0.x|5.1.x|5.2.x
illuminate/console Version 5.0.x|5.1.x|5.2.x
symfony/process Version ~2.6|~3.0
The package kgiedrius/laravel-random-job-database-queue-driver contains the following files
Loading the files please wait ....