We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e2fc6d commit 424176cCopy full SHA for 424176c
readme.md
@@ -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