-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathqueue.php
More file actions
52 lines (47 loc) · 1.04 KB
/
queue.php
File metadata and controls
52 lines (47 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
return [
/**
* The default connexion
*/
"default" => "sync",
/**
* The queue drive connection
*/
"connections" => [
/**
* The sync connexion
*/
"sync" => [
"queue" => "default",
],
/**
* The beanstalkd connexion
*/
"beanstalkd" => [
"hostname" => "127.0.0.1",
"port" => 11300,
"timeout" => 10,
"queue" => "default",
],
/**
* The sqs connexion
*/
"sqs" => [
"queue" => "default",
"url" => app_env("SQS_URL"),
'region' => app_env('AWS_REGION'),
'version' => 'latest',
'credentials' => [
'key' => app_env('AWS_KEY'),
'secret' => app_env('AWS_SECRET'),
],
],
/**
* The database connexion
*/
"database" => [
"queue" => "default",
"table" => "queues",
]
]
];