dev-master
9999999-devLaravel 5 package to push Queued jobs to the log
MIT
The Requires
- php >=5.5.9
- illuminate/queue 5.*
- illuminate/support 5.*
laravel5
Laravel 5 package to push Queued jobs to the log
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)
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' ]
Laravel 5 package to push Queued jobs to the log
MIT
laravel5