From 1be5e29753d3592d0305db17d0bffcf312ef5625 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 10 Jan 2019 15:18:58 -0600 Subject: [PATCH] add dynamo to stubs --- config/cache.php | 11 ++++++++++- config/session.php | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/config/cache.php b/config/cache.php index 0c309696..cc6c07d0 100644 --- a/config/cache.php +++ b/config/cache.php @@ -13,7 +13,8 @@ | using this caching library. This connection is used when another is | not explicitly specified when executing a given caching function. | - | Supported: "apc", "array", "database", "file", "memcached", "redis" + | Supported: "apc", "array", "database", "file", + | "memcached", "redis", "dynamodb" | */ @@ -75,6 +76,14 @@ 'connection' => 'cache', ], + 'dynamodb' => [ + 'driver' => 'dynamodb', + 'key' => env('AWS_ACCESS_KEY_ID'), + 'secret' => env('AWS_SECRET_ACCESS_KEY'), + 'region' => env('AWS_REGION', 'us-east-1'), + 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), + ], + ], /* diff --git a/config/session.php b/config/session.php index fae302ae..d1305aa5 100644 --- a/config/session.php +++ b/config/session.php @@ -14,7 +14,7 @@ | you may specify any of the other wonderful drivers provided here. | | Supported: "file", "cookie", "database", "apc", - | "memcached", "redis", "array" + | "memcached", "redis", "dynamodb", "array" | */