From 9eb65eba3b8b51d2a4c9c8d779d2b6a2211de56c Mon Sep 17 00:00:00 2001 From: Nikolay Gorylenko Date: Tue, 28 Jul 2015 22:25:59 +0200 Subject: [PATCH 1/3] add 'redis' and 'memcached' to setup step #1 --- app/Http/Controllers/SetupController.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/app/Http/Controllers/SetupController.php b/app/Http/Controllers/SetupController.php index 138e206a..c9a9a85c 100644 --- a/app/Http/Controllers/SetupController.php +++ b/app/Http/Controllers/SetupController.php @@ -31,10 +31,12 @@ class SetupController extends AbstractController * @var string[] */ protected $cacheDrivers = [ - 'apc' => 'APC(u)', - 'array' => 'Array', - 'file' => 'File', - 'database' => 'Database', + 'apc' => 'APC(u)', + 'array' => 'Array', + 'file' => 'File', + 'database' => 'Database', + 'memcached' => 'Memcached', + 'redis' => 'Redis', ]; /** From 5d7b05d85761399770df91c1ddaf9e0683ffa65f Mon Sep 17 00:00:00 2001 From: Nikolay Gorylenko Date: Tue, 28 Jul 2015 22:29:43 +0200 Subject: [PATCH 2/3] ignore IntelliJ files --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index b53d52e5..f47ce0c0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +.idea +*.iml .env node_modules phpunit.xml From 68572db6d2fd7c371eda1856ae62d1cdd22885ca Mon Sep 17 00:00:00 2001 From: Nikolay Gorylenko Date: Tue, 28 Jul 2015 22:55:08 +0200 Subject: [PATCH 3/3] do not ignore IntelliJ files --- .gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitignore b/.gitignore index f47ce0c0..b53d52e5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,3 @@ -.idea -*.iml .env node_modules phpunit.xml