Skip to content

Commit

Permalink
Update install instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
barryvdh committed Oct 14, 2014
1 parent c0d9193 commit 9b2ddd2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ It also provides a Facade interface for easy logging Messages, Exceptions and Ti

## Installation

Require this package in your composer.json and run composer update (or run `composer require barryvdh/laravel-debugbar:1.x` directly):
Require this package with composer:

"barryvdh/laravel-debugbar": "1.*"
composer require barryvdh/laravel-debugbar

After updating composer, add the ServiceProvider to the providers array in app/config/app.php

Expand All @@ -57,7 +57,7 @@ The profiler is enabled by default, if you have app.debug=true. You can override
You can also set in your config if you want to include/exclude the vendor files also (FontAwesome, Highlight.js and jQuery). If you already use them in your site, set it to false.
You can also only display the js of css vendors, by setting it to 'js' or 'css'. (Highlight.js requires both css + js, so set to `true` for syntax highlighting)

$ php artisan config:publish barryvdh/laravel-debugbar
php artisan config:publish barryvdh/laravel-debugbar

You can also disable/enable the loggers you want. You can also use the IoC container to add extra loggers. (`$app['debugbar']->addCollector(new MyDataCollector)`)

Expand Down

0 comments on commit 9b2ddd2

Please sign in to comment.