laraqueue/package

The Laraqueue Laravel Package

dev-master 2017-04-21 22:18 UTC

This package is not auto-updated.

Last update: 2024-04-13 17:19:19 UTC


README

Latest Stable Version Total Downloads License

Introduction

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

Installation

Require via composer

composer require laraqueue/package

Add Service Provider

// config/app.php

Laraqueue\Package\LaraqueueServiceProvider::class,

Publish

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

Configuration

Add App Key

# .env

LARAQUEUE_KEY=<your key here>

Add Hidden Model Attributes

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

// config/laraqueue.php

'hidden' => [
    'password'
]

Usage

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

Official Documentation

Coming Soon.

License

Laraqueue Office Package is open-sourced software licensed under the MIT license