| 
									
										
										
										
											2015-02-06 04:39:52 +01:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2016-05-20 08:57:45 +02:00
										 |  |  | declare(strict_types = 1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-06 04:39:52 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | return [ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-27 08:06:24 +02:00
										 |  |  |     /* | 
					
						
							|  |  |  |     |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |     | Default Queue Driver | 
					
						
							|  |  |  |     |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |     | | 
					
						
							|  |  |  |     | The Laravel queue API supports a variety of back-ends via an unified | 
					
						
							|  |  |  |     | API, giving you convenient access to each back-end using the same | 
					
						
							|  |  |  |     | syntax for each one. Here you may set the default queue driver. | 
					
						
							|  |  |  |     | | 
					
						
							|  |  |  |     | Supported: "null", "sync", "database", "beanstalkd", | 
					
						
							| 
									
										
										
										
											2016-01-08 15:59:21 +01:00
										 |  |  |     |            "sqs", "redis" | 
					
						
							| 
									
										
										
										
											2015-06-27 08:06:24 +02:00
										 |  |  |     | | 
					
						
							|  |  |  |     */ | 
					
						
							| 
									
										
										
										
											2015-02-06 04:39:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-08 15:59:21 +01:00
										 |  |  |     'default' => env('QUEUE_DRIVER', 'sync'), | 
					
						
							| 
									
										
										
										
											2015-02-06 04:39:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-27 08:06:24 +02:00
										 |  |  |     /* | 
					
						
							|  |  |  |     |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |     | Queue Connections | 
					
						
							|  |  |  |     |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |     | | 
					
						
							|  |  |  |     | Here you may configure the connection information for each server that | 
					
						
							|  |  |  |     | is used by your application. A default configuration has been added | 
					
						
							|  |  |  |     | for each back-end shipped with Laravel. You are free to add more. | 
					
						
							|  |  |  |     | | 
					
						
							|  |  |  |     */ | 
					
						
							| 
									
										
										
										
											2015-02-06 04:39:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-27 08:06:24 +02:00
										 |  |  |     'connections' => [ | 
					
						
							| 
									
										
										
										
											2015-02-06 04:39:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-08 15:59:21 +01:00
										 |  |  |         'sync' => [ | 
					
						
							| 
									
										
										
										
											2015-06-27 08:06:24 +02:00
										 |  |  |             'driver' => 'sync', | 
					
						
							|  |  |  |         ], | 
					
						
							| 
									
										
										
										
											2015-02-06 04:39:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-08 15:59:21 +01:00
										 |  |  |         'database' => [ | 
					
						
							| 
									
										
										
										
											2015-06-27 08:06:24 +02:00
										 |  |  |             'driver' => 'database', | 
					
						
							|  |  |  |             'table'  => 'jobs', | 
					
						
							|  |  |  |             'queue'  => 'default', | 
					
						
							|  |  |  |             'expire' => 60, | 
					
						
							|  |  |  |         ], | 
					
						
							| 
									
										
										
										
											2015-02-06 04:39:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-27 08:06:24 +02:00
										 |  |  |         'beanstalkd' => [ | 
					
						
							|  |  |  |             'driver' => 'beanstalkd', | 
					
						
							|  |  |  |             'host'   => 'localhost', | 
					
						
							|  |  |  |             'queue'  => 'default', | 
					
						
							|  |  |  |             'ttr'    => 60, | 
					
						
							|  |  |  |         ], | 
					
						
							| 
									
										
										
										
											2015-02-06 04:39:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-08 15:59:21 +01:00
										 |  |  |         'sqs' => [ | 
					
						
							| 
									
										
										
										
											2015-06-27 08:06:24 +02:00
										 |  |  |             'driver' => 'sqs', | 
					
						
							|  |  |  |             'key'    => 'your-public-key', | 
					
						
							|  |  |  |             'secret' => 'your-secret-key', | 
					
						
							| 
									
										
										
										
											2016-01-08 15:59:21 +01:00
										 |  |  |             'prefix' => 'https://sqs.us-east-1.amazonaws.com/your-account-id', | 
					
						
							|  |  |  |             'queue'  => 'your-queue-name', | 
					
						
							| 
									
										
										
										
											2015-06-27 08:06:24 +02:00
										 |  |  |             'region' => 'us-east-1', | 
					
						
							|  |  |  |         ], | 
					
						
							| 
									
										
										
										
											2015-02-06 04:39:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-08 15:59:21 +01:00
										 |  |  |         'redis' => [ | 
					
						
							|  |  |  |             'driver'     => 'redis', | 
					
						
							|  |  |  |             'connection' => 'default', | 
					
						
							|  |  |  |             'queue'      => 'default', | 
					
						
							|  |  |  |             'expire'     => 60, | 
					
						
							| 
									
										
										
										
											2015-06-27 08:06:24 +02:00
										 |  |  |         ], | 
					
						
							| 
									
										
										
										
											2015-02-06 04:39:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-27 08:06:24 +02:00
										 |  |  |     ], | 
					
						
							| 
									
										
										
										
											2015-02-06 04:39:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-27 08:06:24 +02:00
										 |  |  |     /* | 
					
						
							|  |  |  |     |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |     | Failed Queue Jobs | 
					
						
							|  |  |  |     |-------------------------------------------------------------------------- | 
					
						
							|  |  |  |     | | 
					
						
							|  |  |  |     | These options configure the behavior of failed queue job logging so you | 
					
						
							|  |  |  |     | can control which database and table are used to store the jobs that | 
					
						
							|  |  |  |     | have failed. You may change them to any database / table you wish. | 
					
						
							|  |  |  |     | | 
					
						
							|  |  |  |     */ | 
					
						
							| 
									
										
										
										
											2015-02-06 04:39:52 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-08 15:59:21 +01:00
										 |  |  |     'failed' => [ | 
					
						
							|  |  |  |         'database' => env('DB_CONNECTION', 'mysql'), | 
					
						
							|  |  |  |         'table'    => 'failed_jobs', | 
					
						
							| 
									
										
										
										
											2015-06-27 08:06:24 +02:00
										 |  |  |     ], | 
					
						
							| 
									
										
										
										
											2015-02-06 04:39:52 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | ]; |