| Package Data | |
|---|---|
| Maintainer Username: | salopot |
| Maintainer Contact: | salopot@gmail.com (Alexander Kireev) |
| Package Create Date: | 2016-04-12 |
| Package Last Update: | 2016-04-12 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-03 15:13:13 |
| Package Statistics | |
|---|---|
| Total Downloads: | 531 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 2 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Process all jobs on a queue.
The preferred way to install this extension is through composer.
Require this package with composer using the following command:
composer require salopot/laravel-queue-walker "dev-master"
or add
"salopot/laravel-queue-walker": "dev-master"
to the require section of your composer.json file.
After updating composer, add the ServiceProvider to the providers array in config/app.php
Salopot\QueueWalker\QueueWalkerServiceProvider::class,
Run artisan command for execute all jobs awaiting in queue:
php artisan queue:walk
or add call command to laravel scheduler (see: https://laravel.com/docs/5.1/scheduling)
$schedule->command('queue:walk')->everyMinute();