From 07e5cc10d9b6872204d01d87501fb01db45d1ef5 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 12 Jun 2013 22:54:05 -0500 Subject: [PATCH] Tweaking configuration files. --- app/config/app.php | 2 ++ app/config/remote.php | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/app/config/app.php b/app/config/app.php index d63f31c7..5497732a 100644 --- a/app/config/app.php +++ b/app/config/app.php @@ -103,6 +103,7 @@ 'Illuminate\Foundation\Providers\PublisherServiceProvider', 'Illuminate\Queue\QueueServiceProvider', 'Illuminate\Redis\RedisServiceProvider', + 'Illuminate\Remote\RemoteServiceProvider', 'Illuminate\Auth\Reminders\ReminderServiceProvider', 'Illuminate\Foundation\Providers\RouteListServiceProvider', 'Illuminate\Database\SeedServiceProvider', @@ -174,6 +175,7 @@ 'Schema' => 'Illuminate\Support\Facades\Schema', 'Seeder' => 'Illuminate\Database\Seeder', 'Session' => 'Illuminate\Support\Facades\Session', + 'SSH' => 'Illuminate\Support\Facades\SSH', 'Str' => 'Illuminate\Support\Str', 'URL' => 'Illuminate\Support\Facades\URL', 'Validator' => 'Illuminate\Support\Facades\Validator', diff --git a/app/config/remote.php b/app/config/remote.php index 1c29b7ed..d4508804 100644 --- a/app/config/remote.php +++ b/app/config/remote.php @@ -30,8 +30,9 @@ 'production' => array( 'host' => '', - 'username' => 'root', + 'username' => '', 'password' => '', + 'key' => '', ), ),