2017 © Pedro PelĂĄez
 

library laravel-log-queue

Laravel 5 package to push Queued jobs to the log

image

hmazter/laravel-log-queue

Laravel 5 package to push Queued jobs to the log

  • Saturday, September 16, 2017
  • by hmazter
  • Repository
  • 1 Watchers
  • 4 Stars
  • 495 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 38 % Grown

The README.md

Laravel Log Queue

Laravel 5 package to push Queued jobs to the log file, primary use case for this is in development when jobs should not be executed but is saved for debug purposes, (*1)

Install

Require this package with composer using the following command:, (*2)

composer require hmazter/laravel-log-queue

After updating composer, add the service provider to the providers array in config/app.php, (*3)

Hmazter\LaravelLogQueue\LogQueueServiceProvider::class,

Add necesary config options to your config/queue.php and optionaly set log as default driver, (*4)

'log' => [
    'driver' => 'log'
]

The Versions

16/09 2017

dev-master

9999999-dev

Laravel 5 package to push Queued jobs to the log

  Sources   Download

MIT

The Requires

 

laravel5