2017 © Pedro Peláez
 

library laravel-queue-clear

Command for wiping your queues clear

image

morrislaptop/laravel-queue-clear

Command for wiping your queues clear

  • Monday, September 4, 2017
  • by morrislaptop
  • Repository
  • 1 Watchers
  • 65 Stars
  • 172,155 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 14 Forks
  • 2 Open issues
  • 4 Versions
  • 13 % Grown

The README.md

Laravel Queue Clear Command

Build Status, (*1)

Often, when you're issuing php artisan db:refresh --seed, you will have queue jobs left over that won't match with your database records anymore., (*2)

This package simplifies the process of clearing your queues drastically., (*3)

Installation

Begin by installing this package through Composer., (*4)

{
    "require": {
        "morrislaptop/laravel-queue-clear": "~1.0"
    }
}

Laravel 5.5+ will use the auto-discovery function., (*5)

If using Laravel 5.4 (or if you don't use auto-discovery) you will need to include the service provider in config/app.php., (*6)

'providers' => [
    Morrislaptop\LaravelQueueClear\LaravelQueueClearServiceProvider::class,
];

Usage

php artisan queue:clear [connection] [queue]

Where:, (*7)

  • [connection] is the name of a connection in your config/queue.php
  • [queue] is the name of the queue / pipe you want to clear

If you omit either argument, it will use your default driver and the default queue / pipe for that driver., (*8)

The Versions

04/09 2017

dev-master

9999999-dev

Command for wiping your queues clear

  Sources   Download

The Requires

 

04/09 2017

v1.1.0

1.1.0.0

Command for wiping your queues clear

  Sources   Download

The Requires

 

25/05 2015

v1.0.1

1.0.1.0

Command for wiping your queues clear

  Sources   Download

The Requires

 

18/02 2015

v1.0.0

1.0.0.0

Command for wiping your queues clear

  Sources   Download

The Requires