Skip to content

Commit

Permalink
profiler upgrade additions
Browse files Browse the repository at this point in the history
Signed-off-by: Dayle Rees <[email protected]>
  • Loading branch information
daylerees committed May 22, 2012
1 parent 49944ba commit cdcca78
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions laravel/documentation/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit cdcca78

Please sign in to comment.