From 1e45e5ddd1a95592233e9c98b70b0af24e7be9fd Mon Sep 17 00:00:00 2001 From: Adam Lavin Date: Mon, 2 Sep 2013 10:02:07 +0000 Subject: [PATCH] Added Laravel-NewRelic to the app's ServiceProviders --- app/config/app.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/config/app.php b/app/config/app.php index 437338ca..a68e4624 100644 --- a/app/config/app.php +++ b/app/config/app.php @@ -115,6 +115,8 @@ return array( 'Illuminate\Validation\ValidationServiceProvider', 'Illuminate\View\ViewServiceProvider', 'Illuminate\Workbench\WorkbenchServiceProvider', + + 'Intouch\LaravelNewrelic\LaravelNewrelicServiceProvider', ), @@ -180,7 +182,9 @@ return array( 'URL' => 'Illuminate\Support\Facades\URL', 'Validator' => 'Illuminate\Support\Facades\Validator', 'View' => 'Illuminate\Support\Facades\View', - + + 'Newrelic' => 'Intouch\LaravelNewrelic\Facades\Newrelic', + ), );