2017 © Pedro Peláez
 

library laravel-tasks

Task queue for Laravel

image

sinevia/laravel-tasks

Task queue for Laravel

  • Monday, July 30, 2018
  • by sinevia
  • Repository
  • 1 Watchers
  • 0 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Laravel Tasks

A task queue managment system for Laravel. It has a visually frontend to create task definitions, see queued/failed/completed tasks, with option to requeue tasks., (*1)

Features

  • GUI frontend
  • Task Queue

Installation

composer require sinevia/laravel-tasks
php artisan migrate
php artisan vendor:publish

Uninstall (est. 5 mins)

Removal of the package is a breeze:, (*2)

composer remove sinevia/laravel-tasks, (*3)

Optionally, delete the tasks tables (all which start with the snv_tasks_ prefix), (*4)

Configuration

After running the vendor:publish command, the CMS settings will be published in the /config/tasks.php config file. Check these out, and modify according to your taste, (*5)

Route Settings

Route::group(['middleware'=>'superuser-only-middleware'], function(){
    AdvancedRoute::controller('/tasks', '\Sinevia\Tasks\Http\Controllers\TasksController');
});

The Versions

30/07 2018

dev-master

9999999-dev https://github.com/Sinevia/laravel-tasks

Task queue for Laravel

  Sources   Download

proprietary

The Requires

 

The Development Requires

laravel meta sinevia