Browse Source

Merge pull request #695 from daylerees/profiler-upgrade

profiler upgrade additions
Taylor Otwell 12 years ago
parent
commit
63b1636d13
1 changed files with 12 additions and 0 deletions
  1. 12 0
      laravel/documentation/changes.md

+ 12 - 0
laravel/documentation/changes.md

@@ -82,6 +82,18 @@
 
 
 - Add new `asset_url` and `profiler` options to application configuration.
 - Add new `asset_url` and `profiler` options to application configuration.
 - Replace **auth** configuration file.
 - 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.
 - Upgrade the **paths.php** file.
 - Replace the **laravel** folder.
 - Replace the **laravel** folder.