You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The [LaravelQueue](https://github.com/php-enqueue/laravel-queue) package allows to use [queue-interop](https://github.com/queue-interop/queue-interop) compatible transports [the Laravel way](https://laravel.com/docs/5.4/queues).
4
+
I suppose you already [installed and configured](quick_tour.md) the package so let's look what you have to do to make queue work.
5
+
6
+
## Configure
7
+
8
+
You have to add a connector to `config/queues.php` file. The driver must be `interop`.
Copy file name to clipboardExpand all lines: docs/laravel/quick_tour.md
+59-12
Original file line number
Diff line number
Diff line change
@@ -24,30 +24,77 @@ return [
24
24
];
25
25
```
26
26
27
-
## Configure
27
+
## Laravel queues
28
28
29
-
First, you have to configure a transport layer and set one to be default.
29
+
At this stage you are already able to use [laravel queues](queues.md).
30
+
31
+
## Enqueue Simple client
32
+
33
+
If you want to use [enqueue/simple-client](https://github.com/php-enqueue/simple-client) in your Laravel application you have perform additional steps .
34
+
You have to install the client library, in addition to what you've already installed:
35
+
36
+
```bash
37
+
$ composer require enqueue/simple-client
38
+
```
39
+
40
+
Create `config/enqueue.php` file and put a client configuration there:
0 commit comments