Skip to content

Commit 424176c

Browse files
author
Xavier Barbosa
committed
Added readme file with a little introduction to the package and instalation instructions.
1 parent 2e2fc6d commit 424176c

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

readme.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Laravel Debug Console
2+
3+
Lets you keep an eye on your laravel application without intefering with your application response.
4+
Perfect if you are working with apis.
5+
6+
## Installation instructions
7+
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.
10+
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+
```
22+
23+
and then run `composer update`.
24+
25+
## Usage
26+
27+
Open your console and run `php artisan app:debug` it will update automatically on the next request.

0 commit comments

Comments
 (0)