Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Signed-off-by: crynobone <crynobone@gmail.com>
  • Loading branch information
crynobone committed Dec 20, 2014
1 parent d66af61 commit 032750a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
6 changes: 4 additions & 2 deletions fixture/config/cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
|
*/

'default' => env('CACHE_DRIVER') ?: 'array',
'default' => env('CACHE_DRIVER') ?: 'file',

/*
|--------------------------------------------------------------------------
Expand All @@ -39,6 +39,7 @@
'database' => [
'driver' => 'database',
'table' => 'cache',
'connection' => null,
],

'file' => [
Expand All @@ -54,7 +55,8 @@
],

'redis' => [
'driver' => 'redis'
'driver' => 'redis',
'connection' => 'default',
],

],
Expand Down
10 changes: 9 additions & 1 deletion fixture/config/queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
| 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: "sync", "beanstalkd", "sqs", "iron", "redis"
| Supported: "null", "sync", "database", beanstalkd",
| "sqs", "iron", "redis"
|
*/

Expand All @@ -34,6 +35,13 @@
'driver' => 'sync',
],

'database' => [
'driver' => 'database',
'table' => 'jobs',
'queue' => 'default',
'expire' => 60,
],

'beanstalkd' => [
'driver' => 'beanstalkd',
'host' => 'localhost',
Expand Down

0 comments on commit 032750a

Please sign in to comment.