From cdcca78548e4f07bf583ca22879ea30be4c838f1 Mon Sep 17 00:00:00 2001 From: Dayle Rees Date: Tue, 22 May 2012 17:03:26 +0100 Subject: [PATCH] profiler upgrade additions Signed-off-by: Dayle Rees --- laravel/documentation/changes.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/laravel/documentation/changes.md b/laravel/documentation/changes.md index 167bf4f908d..1486e2498bf 100644 --- a/laravel/documentation/changes.md +++ b/laravel/documentation/changes.md @@ -82,6 +82,18 @@ - Add new `asset_url` and `profiler` options to application configuration. - Replace **auth** configuration file. + +Add the following entry to the `aliases` array in `config/application.php`.. + + 'Profiler' => 'Laravel\\Profiling\\Profiler', + +Add the following code above `Blade::sharpen()` in `application/start.php`.. + + if (Config::get('application.profiler')) + { + Profiler::attach(); + } + - Upgrade the **paths.php** file. - Replace the **laravel** folder.