Skip to content

Commit 3479e86

Browse files
author
Xavier Barbosa
committed
Updated package.json copy and added better version constrains.
1 parent b91a45a commit 3479e86

File tree

2 files changed

+13
-16
lines changed

2 files changed

+13
-16
lines changed

composer.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
{
22
"name": "madewithlove/laravel-debug-console",
3+
"description": "Works as a console viewer for laravel debugbar.",
4+
"keywords": ["laravel", "debugbar", "debug", "console"],
35
"license": "MIT",
4-
"description": "Works as a console view for laravel debug bar.",
56
"authors": [
67
{
7-
"name": "Xavier Barbosa",
8-
"email": "xavier@madewithlove.be"
8+
"name": "madewithlove",
9+
"email": "heroes@madewithlove.be"
910
}
1011
],
1112
"require": {
12-
"illuminate/console": ">5.3",
13-
"barryvdh/laravel-debugbar": ">2.4",
14-
"clue/stdio-react": "^2.1"
13+
"php": ">=5.5.9",
14+
"illuminate/console": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*",
15+
"barryvdh/laravel-debugbar": "~2.4|~3.1",
16+
"clue/stdio-react": "~2.1"
1517
},
1618
"autoload": {
1719
"psr-4": {

readme.md

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,18 @@
11
# Laravel Debug Console
22

33
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.
4+
Useful if you are building apis or running console commands.
5+
6+
![php artisan app:debug queries](https://user-images.githubusercontent.com/3688705/41133243-9a32d442-6abd-11e8-9600-18c089440967.png)
57

68
## Installation
79

8-
You can install the latest version via [composer](https://getcomposer.org/):
10+
You can install the latest version via [composer](https://getcomposer.org/):
911

1012
```bash
1113
composer require --dev madewithlove/laravel-debug-console
1214
```
1315

1416
## Usage
1517

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
18+
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)