LaravelPackages.net
Acme Inc.
Toggle sidebar
laraqueue/package

The Laraqueue Laravel Package

33
0
About laraqueue/package

laraqueue/package is a Laravel package for the laraqueue laravel package. It currently has 0 GitHub stars and 33 downloads on Packagist. Install it with composer require laraqueue/package. Discover more Laravel packages by laraqueue or browse all Laravel packages to compare alternatives.

Last updated

Laraqueue Official Package

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

Comments