hmazter / laravel-log-queue by hmazter

Laravel 5 package to push Queued jobs to the log
9,597
4
2
Package Data
Maintainer Username: hmazter
Maintainer Contact: krihog@gmail.com (Kristoffer Högberg)
Package Create Date: 2015-11-02
Package Last Update: 2024-04-03
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-05-03 03:03:39
Package Statistics
Total Downloads: 9,597
Monthly Downloads: 426
Daily Downloads: 7
Total Stars: 4
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

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

Install

Require this package with composer using the following command:

composer require hmazter/laravel-log-queue

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

Hmazter\LaravelLogQueue\LogQueueServiceProvider::class,

Add necesary config options to your config/queue.php and optionaly set log as default driver

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