An open API service indexing awesome lists of open source software.

https://github.com/al-one/laravel-queue-file

File based driver for Laravel Queue
https://github.com/al-one/laravel-queue-file

file-based illuminate laravel laravel-queues

Last synced: about 1 month ago
JSON representation

File based driver for Laravel Queue

Awesome Lists containing this project

README

        

# File based driver for Laravel Queue

## Installing

```
# composer.json

"minimum-stability": "dev",
"prefer-stable": true,
```

```sh
$ composer require "al-one/laravel-queue-file" -vvv
```

## Usage

```php
# config/queue.php
env('QUEUE_DRIVER','file'),
'connections' => [
'file' => [
'driver' => 'file',
//'path' => 'app/queue', // use storage_path() if not start with "/"
//'queue' => 'default',
],
],
];
```

## License

MIT