2017 © Pedro Peláez
 

library laravel-qwatcher

A full-lifecycle queue jobs watcher for Laravel 5.1+

image

maqe/laravel-qwatcher

A full-lifecycle queue jobs watcher for Laravel 5.1+

  • Friday, December 16, 2016
  • by MAQE
  • Repository
  • 9 Watchers
  • 1 Stars
  • 15 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 5 Versions
  • 0 % Grown

The README.md

laravel-qwatcher

A full-lifecycle queue jobs watcher for Laravel 5.1+, (*1)

Build Status Scrutinizer Code Quality Code Coverage, (*2)

Installation

Add package dependency to your project's composer.json file:, (*3)

"require": {
    "maqe/laravel-qwatcher": "dev-master"
}

Run composer update:, (*4)

composer update maqe/laravel-qwatcher

Add package's service provider to your project's config/app.php:, (*5)

'providers' => array(
    Maqe\Qwatcher\QwatcherServiceProvider::class,
),

Add package's class aliases to your project's config/app.php:, (*6)

'aliases' => array(
    'Qwatcher'  => Maqe\Qwatcher\Facades\Qwatch::class,
),

You can publish the migration with:, (*7)

php artisan vendor:publish --provider="Maqe\Qwatcher\QwatcherServiceProvider" --tag="migrations"

After the migration has been published you can create the media-table by running the migrations:, (*8)

php artisan migrate

Usage

In your PHP project

Once Qwatcher is included in your project you may add it to any class by simply using the trait., (*9)

For example:, (*10)

use Maqe\Qwatcher\Traits\WatchableDispatchesJobs;

class Example {
    use WatchableDispatchesJobs;

    public function someMethod() {
        // WatchableDispatchesJobs trait allowed you to add additional info as an optional
        $this->dispatch(new Jobs(), array('key_addition_info1' => 'value_addition_info1'));
    }
}

License

laravel-qwatcher is released under the MIT License., (*11)

The Versions

16/12 2016

dev-dev-laravel-51

dev-dev-laravel-51

A full-lifecycle queue jobs watcher for Laravel 5.1+

  Sources   Download

proprietary

The Requires

 

The Development Requires

laravel queue job watcher

09/12 2016

dev-master

9999999-dev

A full-lifecycle queue jobs watcher for Laravel 5.1+

  Sources   Download

proprietary

The Requires

 

The Development Requires

laravel queue job watcher

08/12 2016

dev-dev-fixed-exception-pr

dev-dev-fixed-exception-pr

A full-lifecycle queue jobs watcher for Laravel 5.1+

  Sources   Download

proprietary

The Requires

 

The Development Requires

laravel queue job watcher

01/12 2016

dev-dev-mvp

dev-dev-mvp

A full-lifecycle queue jobs watcher for Laravel 5.1+

  Sources   Download

proprietary

The Requires

 

The Development Requires

laravel queue job watcher

18/10 2016

dev-dev-issue-6

dev-dev-issue-6

A full-lifecycle queue jobs watcher for Laravel 5.1+

  Sources   Download

proprietary

The Requires

 

The Development Requires

laravel queue job watcher