File tree 2 files changed +46
-0
lines changed 2 files changed +46
-0
lines changed Original file line number Diff line number Diff line change 97
97
'Illuminate\Database\MigrationServiceProvider ' ,
98
98
'Illuminate\Pagination\PaginationServiceProvider ' ,
99
99
'Illuminate\Foundation\Providers\PublisherServiceProvider ' ,
100
+ 'Illuminate\Queue\QueueServiceProvider ' ,
100
101
'Illuminate\Redis\RedisServiceProvider ' ,
101
102
'Illuminate\Database\SeedServiceProvider ' ,
102
103
'Illuminate\Foundation\Providers\ServerServiceProvider ' ,
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ return array (
4
+
5
+ /*
6
+ |--------------------------------------------------------------------------
7
+ | Default Queue Driver
8
+ |--------------------------------------------------------------------------
9
+ |
10
+ | The Laravel queue API supports a variety of back-ends via an unified
11
+ | API, giving you convenient access to each back-end using the same
12
+ | syntax for each one. Here you may set the default queue driver.
13
+ |
14
+ | Supported: "sync", "beanstalkd"
15
+ |
16
+ */
17
+
18
+ 'default ' => 'sync ' ,
19
+
20
+ /*
21
+ |--------------------------------------------------------------------------
22
+ | Queue Connections
23
+ |--------------------------------------------------------------------------
24
+ |
25
+ | Here you may configure the connection information for each server that
26
+ | is used by your application. A default configuration has been added
27
+ | for each back-end shipped with Laravel. You are free to add more.
28
+ |
29
+ */
30
+
31
+ 'connections ' => array (
32
+
33
+ 'sync ' => array (
34
+ 'driver ' => 'sync ' ,
35
+ ),
36
+
37
+ 'beanstalkd ' => array (
38
+ 'driver ' => 'beanstalkd ' ,
39
+ 'host ' => 'localhost ' ,
40
+ 'queue ' => 'default ' ,
41
+ ),
42
+
43
+ ),
44
+
45
+ );
You can’t perform that action at this time.
0 commit comments