All Projects → sarfraznawaz2005 → querydumper

sarfraznawaz2005 / querydumper

Licence: other
Laravel package to dump all running queries on the page.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to querydumper

LaravelFtp
Laravel FTP client
Stars: ✭ 15 (-37.5%)
Mutual labels:  composer, laravel-5-package
Jwt Auth Guard
JWT Auth Guard for Laravel and Lumen Frameworks.
Stars: ✭ 319 (+1229.17%)
Mutual labels:  composer, laravel-5-package
Base62
PHP Base62 encoder and decoder for integers and big integers with Laravel 5 support.
Stars: ✭ 16 (-33.33%)
Mutual labels:  composer, laravel-5-package
collage
Generate Image Collage with PHP and Laravel
Stars: ✭ 70 (+191.67%)
Mutual labels:  composer, laravel-5-package
Telegram Bot Sdk
🤖 Telegram Bot API PHP SDK. Lets you build Telegram Bots easily! Supports Laravel out of the box.
Stars: ✭ 2,212 (+9116.67%)
Mutual labels:  composer, laravel-5-package
Laravel Server Monitor
Server Monitoring Command for Laravel Applications
Stars: ✭ 424 (+1666.67%)
Mutual labels:  composer, laravel-5-package
video-downloader
Video Downloader for Facebook.
Stars: ✭ 63 (+162.5%)
Mutual labels:  composer, laravel-5-package
Performance
⏱ PHP performance tool analyser your script on time, memory usage and db query. Support Laravel and Composer for web, web console and command line interfaces.
Stars: ✭ 429 (+1687.5%)
Mutual labels:  query, composer
Larrock Core
Core components for LarrockCMS
Stars: ✭ 46 (+91.67%)
Mutual labels:  composer, laravel-5-package
Ip Location Zh
获取 IP 地址的真实地理位置
Stars: ✭ 556 (+2216.67%)
Mutual labels:  composer, laravel-5-package
Laravel Database Encryption
A package for automatically encrypting and decrypting Eloquent attributes in Laravel 5.5+, based on configuration settings.
Stars: ✭ 238 (+891.67%)
Mutual labels:  composer, laravel-5-package
Lara Eye
Filter your Query\Builder using a structured query language
Stars: ✭ 39 (+62.5%)
Mutual labels:  query, composer
TCSTK-Angular
TIBCO Cloud™ Composer - Angular Libraries
Stars: ✭ 12 (-50%)
Mutual labels:  composer
laravel-survey
Laravel 6 survey app.
Stars: ✭ 39 (+62.5%)
Mutual labels:  composer
PhpBotFramework
A framework for Telegram Bot API written in PHP.
Stars: ✭ 56 (+133.33%)
Mutual labels:  composer
composer-localdev-plugin
Composer Plugin for local development
Stars: ✭ 31 (+29.17%)
Mutual labels:  composer
composer-repl
A REPL for PHP built into Composer (using PsySH)
Stars: ✭ 81 (+237.5%)
Mutual labels:  composer
laravel-vue-component
A Blade directive to ease up Vue workflow for Laravel projects
Stars: ✭ 19 (-20.83%)
Mutual labels:  laravel-5-package
gh-auto-updater
Automatic Updater with GitHub API for WordPress Plugin
Stars: ✭ 42 (+75%)
Mutual labels:  composer
activerecord-setops
Union, Intersect, and Difference set operations for ActiveRecord (also, SQL's UnionAll).
Stars: ✭ 21 (-12.5%)
Mutual labels:  query

Abandoned:

Use this package instead


Laravel QueryDumper

laravel 5.1 laravel 5.2 laravel 5.3 downloads

Introduction

Simple Laravel 5 package to dump all running queries on the page. If it's SELECT query, it will also show EXPLAIN information against it.

Screenshot

Main Window

Requirements

  • PHP >= 5.6
  • Laravel 5 (tested on Laravel 5.1, 5.2, 5.3 and 5.4)

Installation

Install via composer

composer require sarfraznawaz2005/querydumper

Add Service Provider to config/app.php in providers section

Sarfraznawaz2005\QueryDumper\QueryDumperServiceProvider::class,

Run php artisan vendor:publish to publish package's config file. You should now have querydumper.php file published in app/config folder.

Config Options

  • enabled : Enable or disable QueryDumper. By default it is disabled. If you are on local environment, you can also just add QUERYDUMPER=true to env file to enable it.
  • querystring_name : Whatever value for this config is set, you will be able to see all running quries by appending this value in your url as query string. Example: http://www.yourapp.com/someurl?qqq. Default value is qqq.
  • format_sql : If true, it will also format shown SQL queries. Default false.
  • same_page : If true, it will dump queries on current page you are on. If it affects your layout, you can set this to false and be able to view dumped queries on a page available at url http://yoursite.com/querydumper/dump. In this case, first visit the page you want to see queries of by appending ?querystring_name value there and then visit querydumper/dump route to see quries for your last visited page. Default true.

Related Package

QueryLine

License

This code is published under the MIT License. This means you can do almost anything with it, as long as the copyright notice and the accompanying license file is left intact.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].