Skip to content

Commit b91a45a

Browse files
committed
Updated documentation with usage information.
1 parent 97e018e commit b91a45a

File tree

1 file changed

+14
-20
lines changed

1 file changed

+14
-20
lines changed

readme.md

Lines changed: 14 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,23 @@
11
# Laravel Debug Console
22

3-
Lets you keep an eye on your laravel application without intefering with your application response.
4-
Perfect if you are working with apis.
3+
Use as an alternative to view collected information from [Laravel Debugbar](https://github.com/barryvdh/laravel-debugbar) package.
4+
Usefull if you are building apis or running console commands.
55

6-
## Installation instructions
6+
## Installation
77

8-
This package is still in development and not on packagist. To test it you can install it by adding it
9-
has a repository to your composer.json file.
8+
You can install the latest version via [composer](https://getcomposer.org/):
109

11-
```json
12-
"repositories": [
13-
{
14-
"type": "path",
15-
"url": "../laravel-debug-console-package"
16-
}
17-
],
18-
"require-dev": {
19-
"madewithlove/laravel-debug-console": "*"
20-
},
21-
"minimum-stability": "dev",
22-
"prefer-stable": true
10+
```bash
11+
composer require --dev madewithlove/laravel-debug-console
2312
```
2413

25-
and then run `composer update`.
26-
2714
## Usage
2815

29-
Open your console and run `php artisan app:debug` it will update automatically on the next request.
16+
Open your console and run `php artisan app:debug {screen}` you can choose from the following options (same there would be available by default on laravel debug bar):
17+
18+
- messages
19+
- timeline
20+
- exceptions
21+
- route
22+
- queries
23+
- request

0 commit comments

Comments
 (0)