Skip to content

Commit 78f6a64

Browse files
author
Xavier Barbosa
committed
Updated instalation instructions for laravel 5.4 and bellow.
1 parent 3479e86 commit 78f6a64

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

readme.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,18 @@ Useful if you are building apis or running console commands.
88
## Installation
99

1010
You can install the latest version via [composer](https://getcomposer.org/):
11-
1211
```bash
1312
composer require --dev madewithlove/laravel-debug-console
1413
```
1514

15+
Add the service provider to `config/app.php` if you are on laravel 5.4 or bellow:
16+
```php
17+
'providers' => [
18+
// ...
19+
Madewithlove\LaravelDebugConsole\ServiceProvider::class
20+
]
21+
```
22+
1623
## Usage
1724

1825
Open your console and run `php artisan app:debug [messages|timeline|exceptions|route|queries|request]` same options that are available by default on Laravel Debugbar.

0 commit comments

Comments
 (0)