| Package Data | |
|---|---|
| Maintainer Username: | overtrue |
| Maintainer Contact: | anzhengchao@gmail.com (overtrue) |
| Package Create Date: | 2017-09-05 |
| Package Last Update: | 2025-02-20 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-02 15:14:06 |
| Package Statistics | |
|---|---|
| Total Downloads: | 281,659 |
| Monthly Downloads: | 6,938 |
| Daily Downloads: | 42 |
| Total Stars: | 409 |
| Total Watchers: | 8 |
| Total Forks: | 47 |
| Total Open Issues: | 2 |
$ composer require overtrue/laravel-query-logger --dev -vvv
Laravel Query Logger will be enabled when APP_DEBUG is true.
Please keep the
--devoption.
$ tail -f ./storage/logs/laravel.log
[2017-09-05 14:52:14] local.DEBUG: [800μs] select count(*) as aggregate from `discussions` where `discussions`.`deleted_at` is null | GET: http://laravel.app/discussions
[2017-09-05 14:52:14] local.DEBUG: [1.07ms] select * from `discussions` where `discussions`.`deleted_at` is null order by `is_top` desc, `created_at` desc limit 15 offset 0 | GET: http://laravel.app/discussions
[2017-09-05 14:52:14] local.DEBUG: [3.63s] select `tags`.*, `taggables`.`taggable_id` as `pivot_taggable_id`, `taggables`.`tag_id` as `pivot_tag_id` from `tags` inner join `taggables` on `tags`.`id` = `taggables`.`tag_id` where `taggables`.`taggable_id` in ('1', '2', '3', '4', '5', '6', '7', '8') and `taggables`.`taggable_type` = 'App\\Models\\Discussion' order by `order_column` asc | GET: http://laravel.app/discussions
[2017-09-05 14:52:14] local.DEBUG: [670μs] select * from `users` where `users`.`id` in ('1', '2', '4') and `users`.`deleted_at` is null | GET: http://laravel.app/discussions
...
想知道如何从零开始构建 PHP 扩展包?
请关注我的实战课程,我会在此课程中分享一些扩展开发经验 —— 《PHP 扩展包实战教程 - 从入门到发布》
MIT