hmazter / laravel-log-queue
Laravel 5+ package to push Queued jobs to the log
Installs: 10 949
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=5.5.9
- illuminate/queue: 5.*|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0
- illuminate/support: 5.*|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0
This package is auto-updated.
Last update: 2024-11-03 20:52:51 UTC
README
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' ]