laraqueue / package by laraqueue

The Laraqueue Laravel Package
33
0
1
Package Data
Maintainer Username: laraqueue
Maintainer Contact: laraqueue@gmail.com (Christopher Mitchell)
Package Create Date: 2017-03-11
Package Last Update: 2017-04-21
Language: PHP
License: MIT
Last Refreshed: 2024-03-23 15:02:37
Package Statistics
Total Downloads: 33
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

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