2017 © Pedro Peláez
 

library package

The Laraqueue Laravel Package

image

laraqueue/package

The Laraqueue Laravel Package

  • Saturday, April 22, 2017
  • by laraqueue
  • Repository
  • 0 Watchers
  • 0 Stars
  • 27 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Laraqueue Official Package

Latest Stable Version Total Downloads License, (*1)

Introduction

This is the official Laravel package for Laraqueue, the real-time queue management tool for Laravel applications., (*2)

Installation

Require via composer, (*3)

composer require laraqueue/package

Add Service Provider, (*4)

// config/app.php

Laraqueue\Package\LaraqueueServiceProvider::class,

Publish, (*5)

php artisan vendor:publish --provider="Laraqueue\Providers\LaraqueueServiceProvider"

Configuration

Add App Key, (*6)

# .env

LARAQUEUE_KEY=<your key here>

Add Hidden Model Attributes, (*7)

Any attribute added will be recursively removed from all job data before being sent to the Laraqueue API. By default, password is always hidden., (*8)

// config/laraqueue.php

'hidden' => [
    'password'
]

Usage

That's it! Laraqueue overrides the Laravel BusServiceProvider::dispatch method to report all non-sync jobs., (*9)

Official Documentation

Coming Soon., (*10)

License

Laraqueue Office Package is open-sourced software licensed under the MIT license, (*11)

The Versions

22/04 2017

dev-master

9999999-dev https://www.laraqueue.com

The Laraqueue Laravel Package

  Sources   Download

MIT

The Requires

 

The Development Requires

by Christopher Mitchell

laravel package laraqueue