From b04c738743c9be82760f6c4bd4d2780597683523 Mon Sep 17 00:00:00 2001 From: Adam Lavin Date: Mon, 2 Sep 2013 09:57:26 +0000 Subject: [PATCH 1/2] Added Laravel-NewRelic to composer.json --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index d1769950..6c00c759 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,8 @@ "laravel/framework": "4.0.*", "kriswallsmith/assetic": "1.2.*@dev", "codescale/ffmpeg-php": "2.7.0", - "simplepie/simplepie": "1.3.1" + "simplepie/simplepie": "1.3.1", + "intouch/laravel-newrelic": "*" }, "autoload": { "classmap": [ From 1e45e5ddd1a95592233e9c98b70b0af24e7be9fd Mon Sep 17 00:00:00 2001 From: Adam Lavin Date: Mon, 2 Sep 2013 10:02:07 +0000 Subject: [PATCH 2/2] 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', + ), );