Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hmazter/laravel-log-queue
Laravel 5+ package to push Queued jobs to the log
https://github.com/hmazter/laravel-log-queue
laravel laravel-package laravel-queue
Last synced: 11 days ago
JSON representation
Laravel 5+ package to push Queued jobs to the log
- Host: GitHub
- URL: https://github.com/hmazter/laravel-log-queue
- Owner: hmazter
- Created: 2015-11-02T17:47:09.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-04-03T19:42:01.000Z (9 months ago)
- Last Synced: 2024-12-13T06:33:32.209Z (15 days ago)
- Topics: laravel, laravel-package, laravel-queue
- Language: PHP
- Homepage:
- Size: 5.86 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# 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:
```bash
composer require hmazter/laravel-log-queue
```After updating composer, add the service provider to the `providers` array in `config/app.php`
```php
Hmazter\LaravelLogQueue\LogQueueServiceProvider::class,
```Add necesary config options to your `config/queue.php` and optionaly set `log` as default driver
```php
'log' => [
'driver' => 'log'
]
```