Skip to content

Commit 016cc1b

Browse files
authored
Update README.md
Updates README in accordance with updated config
1 parent 3c860ab commit 016cc1b

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

README.md

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -66,28 +66,32 @@ return [
6666
],
6767

6868
/*
69-
* Define the output format that you want to use. Multiple classes are supported
69+
* Define the output formats that you want to use.
7070
* Available options are:
7171
*
7272
* Alert:
7373
* Displays an alert on the website
7474
* \BeyondCode\QueryDetector\Outputs\Alert::class
7575
*
76-
* Debugbar: (make sure you have the barryvdh/laravel-debugbar package installed)
77-
* Writes the N+1 queries into a custom messages collector of Debugbar
78-
* \BeyondCode\QueryDetector\Outputs\Debugbar::class
79-
*
80-
* Log:
81-
* Writes the N+1 queries into the Laravel.log file
82-
* \BeyondCode\QueryDetector\Outputs\Log::class
83-
*
8476
* Console:
8577
* Writes the N+1 queries into your browsers console log
8678
* \BeyondCode\QueryDetector\Outputs\Console::class
8779
*
80+
* Clockwork: (make sure you have the itsgoingd/clockwork package installed)
81+
* Writes the N+1 queries warnings to Clockwork log
82+
* \BeyondCode\QueryDetector\Outputs\Clockwork::class
83+
*
84+
* Debugbar: (make sure you have the barryvdh/laravel-debugbar package installed)
85+
* Writes the N+1 queries into a custom messages collector of Debugbar
86+
* \BeyondCode\QueryDetector\Outputs\Debugbar::class
87+
*
8888
* JSON:
8989
* Writes the N+1 queries into the response body of your JSON responses
9090
* \BeyondCode\QueryDetector\Outputs\Json::class
91+
*
92+
* Log:
93+
* Writes the N+1 queries into the Laravel.log file
94+
* \BeyondCode\QueryDetector\Outputs\Log::class
9195
*/
9296
'output' => [
9397
\BeyondCode\QueryDetector\Outputs\Log::class,

0 commit comments

Comments
 (0)