[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"$fuadctu7soehbS43A5nd7gfasg96piqylDIIFXcjanV4":3},{"slug":4,"name":5,"version":6,"author":7,"author_profile":8,"description":9,"short_description":10,"active_installs":11,"downloaded":12,"rating":13,"num_ratings":14,"last_updated":15,"tested_up_to":16,"requires_at_least":17,"requires_php":18,"tags":19,"homepage":18,"download_link":25,"security_score":26,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29,"vulnerabilities":30,"developer":31,"crawl_stats":28,"alternatives":36,"analysis":129,"fingerprints":148},"laravel-dd","Laravel DD for WordPress","1.0.1","phegman","https:\u002F\u002Fprofiles.wordpress.org\u002Fphegman\u002F","\u003Cp>Use Laravel’s \u003Ca href=\"https:\u002F\u002Flaravel.com\u002Fdocs\u002F5.4\u002Fhelpers#method-dd\" rel=\"nofollow ugc\">\u003Ccode>dd()\u003C\u002Fcode>\u003C\u002Fa> (die dump) function in your WordPress projects. Perfect for debuging custom queries! Laravel’s \u003Ccode>dd()\u003C\u002Fcode> function is built on top of the \u003Ca href=\"http:\u002F\u002Fsymfony.com\u002Fdoc\u002Fcurrent\u002Fcomponents\u002Fvar_dumper.html\" rel=\"nofollow ugc\">Symfony VarDumper component\u003C\u002Fa> \u003Cstrong>Please note in order for this plugin to work correctly WordPress Emojis will be disabled\u003C\u002Fstrong>\u003C\u002Fp>\n","Use Laravel's dd() (die dump) function in your Wordpress projects. Perfect for debuging custom queries!",1000,15070,100,7,"2018-03-02T22:32:00.000Z","4.8.28","3.0.1","",[20,21,22,23,24],"debug","die","dump","laravel","var-dumper","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Flaravel-dd.zip",85,0,null,"2026-03-15T15:16:48.613Z",[],{"slug":7,"display_name":7,"profile_url":8,"plugin_count":32,"total_installs":11,"avg_security_score":26,"avg_patch_time_days":33,"trust_score":34,"computed_at":35},1,30,84,"2026-04-04T22:39:38.562Z",[37,58,81,98,115],{"slug":38,"name":39,"version":40,"author":41,"author_profile":42,"description":43,"short_description":44,"active_installs":13,"downloaded":45,"rating":13,"num_ratings":46,"last_updated":47,"tested_up_to":48,"requires_at_least":49,"requires_php":50,"tags":51,"homepage":56,"download_link":57,"security_score":26,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"kint-php-debugger","Kint PHP Debugger","2.0.2","Tonya Mork","https:\u002F\u002Fprofiles.wordpress.org\u002Fhellofromtonya\u002F","\u003Cp>This WordPress plugin is a wrapper for the \u003Ca href=\"https:\u002F\u002Fkint-php.github.io\u002Fkint\u002F\" rel=\"nofollow ugc\">Kint\u003C\u002Fa> PHP Debugger utility version 1.x.  Now instead of using var_dump() or print_r(), you simply use d() with zero, nadda, no formatting required.\u003C\u002Fp>\n\u003Cp>Use this tool when you are debugging your website, in place of \u003Cstrong>\u003Ca href=\"http:\u002F\u002Fphp.net\u002Fmanual\u002Fen\u002Ffunction.var-dump.php\" rel=\"nofollow ugc\">var_dump()\u003C\u002Fa>\u003C\u002Fstrong>, \u003Cstrong>\u003Ca href=\"http:\u002F\u002Fphp.net\u002Fmanual\u002Fen\u002Ffunction.print-r.php\" rel=\"nofollow ugc\">print_r()\u003C\u002Fa>\u003C\u002Fstrong> and \u003Cstrong>\u003Ca href=\"http:\u002F\u002Fphp.net\u002Fmanual\u002Fen\u002Ffunction.debug-backtrace.php\" rel=\"nofollow ugc\">debug_backtrace()\u003C\u002Fa>\u003C\u002Fstrong>.\u003C\u002Fp>\n\u003Ch4>Handy Tools\u003C\u002Fh4>\n\u003Cp>Some handy tools just for the PHP Developer:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ccode>d( $var );\u003C\u002Fcode> to render a collapsible UI container which displays your variable data in “the most informative way”\u003C\u002Fli>\n\u003Cli>\u003Ccode>ddd( $var );\u003C\u002Fcode> same as d() except that it also executes \u003Ccode>die()\u003C\u002Fcode> to halt execution.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>Here are some variations of \u003Ccode>d()\u003C\u002Fcode> to give you the display you want:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ccode>~d( $var );\u003C\u002Fcode> outputs in plain text format.\u003C\u002Fli>\n\u003Cli>\u003Ccode>+d( $var );\u003C\u002Fcode> disregards depth level limits and outputs everything\u003C\u002Fli>\n\u003Cli>\u003Ccode>!d( $var );\u003C\u002Fcode> shows expanded rich output\u003C\u002Fli>\n\u003Cli>\u003Ccode>-d( $var );\u003C\u002Fcode> attempts to ob_clean() the previous output (dump something inside of HTML)\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch4>Profiler\u003C\u002Fh4>\n\u003Cp>Kint even includes a naïve profiler, which can help you analyze which blocks of code take longer than others:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>Kint::dump( microtime() ); \u002F\u002F just pass microtime()\nsleep( 1 );\nKint::dump( microtime(), 'after sleep(1)' );\nsleep( 2 );\nddd( microtime(), 'final call, after sleep(2)' );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>See \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fextend\u002Fplugins\u002Fkint-php-debugger\u002Fscreenshots\u002F\" rel=\"ugc\">screenshot 2\u003C\u002Fa> for what is rendered out in your browser.\u003C\u002Fp>\n\u003Ch3>Admin Bar\u003C\u002Fh3>\n\u003Cp>“KINT ACTIVE” indicator displays in the WordPress admin bar to alert you when the plugin is active.\u003C\u002Fp>\n","Kint is a modern and powerful PHP debugging helper, which requires zero-setup and replaces var_dump(), print_r() and debug_backtrace().",13073,12,"2019-03-11T17:29:00.000Z","5.1.22","3.5","5.3",[20,52,53,54,55],"debugger","kint","print_r","var_dump","https:\u002F\u002Fgithub.com\u002FKnowTheCode\u002Fkint-php-debugger","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fkint-php-debugger.2.0.2.zip",{"slug":59,"name":60,"version":61,"author":62,"author_profile":63,"description":64,"short_description":65,"active_installs":13,"downloaded":66,"rating":13,"num_ratings":67,"last_updated":68,"tested_up_to":69,"requires_at_least":70,"requires_php":71,"tags":72,"homepage":76,"download_link":77,"security_score":78,"vuln_count":79,"unpatched_count":32,"last_vuln_date":80,"fetched_at":29},"variable-inspector","Variable Inspector","2.6.3","Bowo","https:\u002F\u002Fprofiles.wordpress.org\u002Fqriouslad\u002F","\u003Cp>Variable Inspector allows you to easily inspect your PHP $variables in a visually clean manner at a central dashboard in wp-admin. It aims to be an \u003Cstrong>easy and useful enough dev and debug tool\u003C\u002Fstrong>.\u003C\u002Fp>\n\u003Cp>It provides \u003Cstrong>a single-line code\u003C\u002Fstrong> to inspect your variable (see “How to Use” below). Nothing is shown to site visitors nor being output on the frontend, and the \u003Cstrong>$variable content is nicely formatted for review\u003C\u002Fstrong> using \u003Ca href=\"https:\u002F\u002Fwww.php.net\u002Fmanual\u002Fen\u002Ffunction.var-dump.php\" rel=\"nofollow ugc\">var_dump()\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fwww.php.net\u002Fmanual\u002Fen\u002Ffunction.var-export.php\" rel=\"nofollow ugc\">var_export()\u003C\u002Fa> and \u003Ca href=\"https:\u002F\u002Fwww.php.net\u002Fmanual\u002Fen\u002Ffunction.print-r.php\" rel=\"nofollow ugc\">print_r()\u003C\u002Fa> on the inspector dashboard in wp-admin.\u003C\u002Fp>\n\u003Cp>It’s a real time-saver for scenarios where \u003Ca href=\"https:\u002F\u002Fxdebug.org\u002F\" rel=\"nofollow ugc\">Xdebug\u003C\u002Fa> or even something like \u003Ca href=\"https:\u002F\u002Fmyray.app\u002F\" rel=\"nofollow ugc\">Ray\u003C\u002Fa> is not ideal or simply an overkill. For example, when coding on a non-local environment via tools like \u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fcode-snippets\u002F\" rel=\"ugc\">Code Snippets\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fwpcodebox.com\u002F\" rel=\"nofollow ugc\">WPCodeBox\u003C\u002Fa>, \u003Ca href=\"https:\u002F\u002Fdplugins.com\u002Fproducts\u002Fscripts-organizer\u002F\" rel=\"nofollow ugc\">Scripts Organizer\u003C\u002Fa> or \u003Ca href=\"https:\u002F\u002Fwww.cleanplugins.com\u002Fproducts\u002Fadvanced-scripts\u002F\" rel=\"nofollow ugc\">Advanced Scripts\u003C\u002Fa>. Additionally, because it is a regular WordPress plugin, you simply install, activate and use without the need for complicated configuration.\u003C\u002Fp>\n\u003Ch3>What Users Say\u003C\u002Fh3>\n\u003Cp>\u003Cem>“\u003Cstrong>Huge time-saver when working with PHP variables\u003C\u002Fstrong>.”\u003C\u002Fem> ~\u003Ca href=\"https:\u002F\u002Fdigwp.com\u002F2023\u002F06\u002Fplugins-troubleshoot-debug-wordpress\u002F\" rel=\"nofollow ugc\">Jeff Starr\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>\u003Cem>“\u003Cstrong>Works great!\u003C\u002Fstrong> Love this thing.”\u003C\u002Fem> ~\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Ftopic\u002Fworks-great-8269\u002F\" rel=\"ugc\">Josh\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>\u003Cem>“\u003Cstrong>Every developer need it.\u003C\u002Fstrong> You can debug easily every variable.”\u003C\u002Fem> ~\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Ftopic\u002Fawsome-plugin-that-every-developer-need-it\u002F\" rel=\"ugc\">Pexle Chris\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>\u003Cem>“\u003Cstrong>All I need\u003C\u002Fstrong>. Enough to test the function of snippets. Works flawless.”\u003C\u002Fem> ~\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Ftopic\u002Fall-i-need-39\u002F\" rel=\"ugc\">@tesig\u003C\u002Fa>\u003C\u002Fp>\n\u003Cp>\u003Cem>“\u003Cstrong>It does what it does very well\u003C\u002Fstrong>, and doesn’t try to do everything.”\u003C\u002Fem> ~\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fsupport\u002Ftopic\u002Fexactly-what-i-needed-868\u002F\" rel=\"ugc\">@swb1\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>How to Use\u003C\u002Fh3>\n\u003Cp>Simply place the following line anywhere in your code after the \u003Ccode>$variable_name\u003C\u002Fcode> you’d like to inspect:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>do_action( 'inspect', [ 'variable_name', $variable_name ] );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>If you’d like to record the originating PHP file and line number, append the PHP magic constants \u003Ccode>__FILE__\u003C\u002Fcode> and \u003Ccode>__LINE__\u003C\u002Fcode> as follows.\u003C\u002Fp>\n\u003Cpre>\u003Ccode>do_action( 'inspect', [ 'variable_name', $variable_name, __FILE__, __LINE__ ] );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>This would help you locate and clean up the inspector lines once you’re done debugging.\u003C\u002Fp>\n\u003Ch3>Give Back\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fbowo.io\u002Fvi-rvw-dsc\" rel=\"nofollow ugc\">A nice review\u003C\u002Fa> would be great!\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fbowo.io\u002Fvi-fdbk-dsc\" rel=\"nofollow ugc\">Give feedback\u003C\u002Fa> and help improve future versions.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fbowo.io\u002Fvi-gthb-dsc\" rel=\"nofollow ugc\">Github repo\u003C\u002Fa> to contribute code.\u003C\u002Fli>\n\u003Cli>Sponsor my work with as little as USD 1 \u003Ca href=\"https:\u002F\u002Fbowo.io\u002Fvi-sp-gth-rdm\" rel=\"nofollow ugc\">monthly\u003C\u002Fa> or \u003Ca href=\"https:\u002F\u002Fbowo.io\u002Fvi-sp-ppl-rdm\" rel=\"nofollow ugc\">one-time\u003C\u002Fa>.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>PRO Version\u003C\u002Fh3>\n\u003Cp>If you need something more versatile for larger, more complex projects, these \u003Ca href=\"https:\u002F\u002Fbowo.io\u002Fvi-up-hstd-dsc\" rel=\"nofollow ugc\">PRO features\u003C\u002Fa> might come in handy:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Cstrong>vi( $variable )\u003C\u002Fstrong> inspector to replace the do_action() above and automatically includes the file path and line number. Or, use \u003Cstrong>vis( $variable_name, ‘variable_name’ )\u003C\u002Fstrong> when inspecting in\u002Fvia code snippets plugins (Code Snippets, WPCodeBox, Scripts Organizer, etc.) or custom code module of page builders (Bricks, Oxygen Builder, etc.)\u003C\u002Fli>\n\u003Cli>\u003Cstrong>dump_print_r\u003C\u002Fstrong> and \u003Cstrong>dump_print_tree\u003C\u002Fstrong> viewers: both viewers combines var_dump and print_r, with the later allowing for collapsing and expanding data nodes, which is especially useful for inspecting long and complex arrays and objects.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>kint\u003C\u002Fstrong> viewer: an advanced viewer with table view for multi-dimensional arrays, node access path info, capability to search inside variables, pop-up window viewing and advanced info for your complex objects, e.g. available methods and static class properties.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Categorize and filter results by color\u003C\u002Fstrong>. This, for example, allows you to categorize $variables according to which stage they’re in inside your code.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Add counter or notes\u003C\u002Fstrong> to inspection results. Another way to tag $variables and provide context for the inspection results.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Search filter\u003C\u002Fstrong>: easily find certain $variables by name and type.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>View up to 250 results\u003C\u002Fstrong>. The free version is limited to 25 results.\u003C\u002Fli>\n\u003Cli>\u003Cstrong>Individual and bulk deletion\u003C\u002Fstrong> of results. Easily clean up your inspection dashboard from obsolete results you no longer need to reference. You can also select certain variables in bulk.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fbowo.io\u002Fvi-pro-scrsht-rdm\" rel=\"nofollow ugc\">Click here\u003C\u002Fa> to see a screenshot of the \u003Ca href=\"https:\u002F\u002Fbowo.io\u002Fvi-up-hstd-dsc\" rel=\"nofollow ugc\">PRO version\u003C\u002Fa> or see below in the screenshots section.\u003C\u002Fp>\n\u003Ch3>What PRO Users Say\u003C\u002Fh3>\n\u003Cp>\u003Cem>“I was looking for a tool like this for a while. \u003Cstrong>Great solution!\u003C\u002Fstrong> Love this thing.”\u003C\u002Fem> ~Marco Frodl\u003C\u002Fp>\n\u003Cp>\u003Cem>“I have used it for a couple of days and it has helped me a lot to \u003Cstrong>go faster when debugging\u003C\u002Fstrong>.””\u003C\u002Fem> ~Javier Sor\u003C\u002Fp>\n\u003Cp>\u003Cem>“I’ve only just started using it and it \u003Cstrong>really helps me get my head around the code of a plugin\u003C\u002Fstrong> I’m trying to customise”\u003C\u002Fem> ~Tim Dickinson\u003C\u002Fp>\n\u003Cp>\u003Cem>“I’ve been testing it and I really like it. It \u003Cstrong>helps a lot and saves a lot of time in development\u003C\u002Fstrong>. It’s also compatible with Oxygen, Bricks, WPCodeBox, etc.”\u003C\u002Fem> ~Juan Jose Gonzalez, oxygenados.com\u003C\u002Fp>\n\u003Cp>\u003Cem>“I just bought this! \u003Cstrong>Great plugin\u003C\u002Fstrong> – thank you for the hard work!”\u003C\u002Fem> ~Tim Dickinson\u003C\u002Fp>\n\u003Cp>\u003Cem>“I used to use Ray locally, I’m also using Xdebug a lot .. if I need to debug some variables, I use Query Monitor. I bought this, because \u003Cstrong>the UI is nice, it has all those good features from both worlds\u003C\u002Fstrong>.”\u003C\u002Fem> ~Peter Morvay\u003C\u002Fp>\n\u003Cp>\u003Cem>“Worth the buy! \u003Cstrong>It is really good… great for debugging\u003C\u002Fstrong>. Specially, when you want to write custom code or understand some snippet ChatGPT gave you.”\u003C\u002Fem> ~John D\u003C\u002Fp>\n\u003Cp>\u003Ca href=\"https:\u002F\u002Fbowo.io\u002Fvi-up-hstd-dsc\" rel=\"nofollow ugc\">Get the PRO version now!\u003C\u002Fa>\u003C\u002Fp>\n\u003Ch3>Check These Out Too\u003C\u002Fh3>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fadmin-site-enhancements\u002F\" rel=\"ugc\">Admin and Site Enhancements\u003C\u002Fa> helps you to easily enhance various admin workflows and site aspects while replacing multiple plugins doing it.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fsystem-dashboard\u002F\" rel=\"ugc\">System Dashboard\u003C\u002Fa>: Central dashboard to monitor various WordPress components, processes and data, including the server.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fdebug-log-manager\u002F\" rel=\"ugc\">Debug Log Manager\u003C\u002Fa>: Log PHP, database and JavaScript errors via WP_DEBUG with one click. Conveniently create, view, filter and clear the debug.log file.\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fbowo.io\u002Fvi-wpn-dsc\" rel=\"nofollow ugc\">WordPress Newsboard\u003C\u002Fa>: The latest news, articles, podcasts and videos from 100+ WordPress-focused sources.\u003C\u002Fli>\n\u003C\u002Ful>\n","Inspect PHP variables on a central dashboard in wp-admin for convenient debugging.",73407,5,"2026-01-16T12:45:00.000Z","6.9.4","4.8","5.6",[20,73,74,75],"developer","php-variables","variable-dump","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fvariable-inspector\u002F","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fvariable-inspector.2.6.3.zip",77,2,"2025-04-04 00:00:00",{"slug":82,"name":83,"version":84,"author":85,"author_profile":86,"description":87,"short_description":88,"active_installs":89,"downloaded":90,"rating":13,"num_ratings":79,"last_updated":91,"tested_up_to":92,"requires_at_least":93,"requires_php":18,"tags":94,"homepage":96,"download_link":97,"security_score":26,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"wp-dbug","wp-dBug","0.2","vhauri","https:\u002F\u002Fprofiles.wordpress.org\u002Fvhauri\u002F","\u003Cp>This plugin is basically a wrapper for the excellent dBug (http:\u002F\u002Fdbug.ospinto.com) class for PHP debugging, written by Kwaku Otchere..\u003C\u002Fp>\n\u003Cp>Instead of var_dump or echo, you can call wp_dbug( $variable ) to get clear, dynamic debug output of strings, arrays, or objects.\u003C\u002Fp>\n\u003Cp>Thanks to @borkweb, the plugin is now compatible with the WP Debug Bar plugin (https:\u002F\u002Fwordpress.org\u002Fextend\u002Fplugins\u002Fdebug-bar\u002F) for extra debugging goodness!\u003C\u002Fp>\n","Plugin implements the awesome dBug class created by Kwaku Otchere for use in WordPress plugin debugging",70,6126,"2013-01-19T00:07:00.000Z","3.5.2","2.7",[95,20,52,55],"dbug","http:\u002F\u002Fneverblog.net\u002Fwp-dbug","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fwp-dbug.zip",{"slug":99,"name":100,"version":101,"author":102,"author_profile":103,"description":104,"short_description":105,"active_installs":106,"downloaded":107,"rating":27,"num_ratings":27,"last_updated":108,"tested_up_to":109,"requires_at_least":110,"requires_php":18,"tags":111,"homepage":18,"download_link":114,"security_score":26,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"symfony-vardumper","WordPress Symfony VarDumper","1.0.0","Coen Jacobs","https:\u002F\u002Fprofiles.wordpress.org\u002Fcoenjacobs\u002F","\u003Cp>Brings the Symfony VarDumper component to your WordPress installation.\u003C\u002Fp>\n\u003Cp>This enables you to use the dd() function in your WordPress projects that then uses the \u003Ca href=\"http:\u002F\u002Fsymfony.com\u002Fdoc\u002Fcurrent\u002Fcomponents\u002Fvar_dumper\u002Fintroduction.html\" rel=\"nofollow ugc\">Symfony VarDumper component\u003C\u002Fa>.\u003C\u002Fp>\n\u003Cp>This plugin requires PHP 5.4 and enforces this via the \u003Ca href=\"http:\u002F\u002Fwww.wpupdatephp.com\u002F\" rel=\"nofollow ugc\">WPupdatePHP library\u003C\u002Fa>.\u003C\u002Fp>\n","Brings the Symfony VarDumper component to your WordPress installation.",40,1650,"2015-03-11T07:45:00.000Z","4.1.42","4.0",[20,112,113],"symfony","vardumper","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fsymfony-vardumper.1.0.0.zip",{"slug":116,"name":117,"version":6,"author":41,"author_profile":42,"description":118,"short_description":119,"active_installs":120,"downloaded":121,"rating":13,"num_ratings":122,"last_updated":123,"tested_up_to":48,"requires_at_least":124,"requires_php":71,"tags":125,"homepage":127,"download_link":128,"security_score":26,"vuln_count":27,"unpatched_count":27,"last_vuln_date":28,"fetched_at":29},"debug-toolkit","Debug Toolkit","\u003Cp>Debug Toolkit makes debugging your code easier and more enjoyable.  It provides you with interactive and helpful tools:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Better PHP error interface from (\u003Ca href=\"http:\u002F\u002Ffilp.github.io\u002Fwhoops\u002F\" rel=\"nofollow ugc\">Whoops\u003C\u002Fa>)\u003C\u002Fli>\n\u003Cli>Better variable inspection – no need to use \u003Ccode>var_dump\u003C\u002Fcode>, \u003Ccode>print_r\u003C\u002Fcode>, or X-debug\u003C\u002Fli>\n\u003Cli>An interactive way to back trace the program’s execution order\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Better PHP Error Interface from Whoops\u003C\u002Fh3>\n\u003Cp>The built-in PHP error container is basic and not as helpful as it could be.  On top of that, it’s rather ugly. Wouldn’t you agree?\u003C\u002Fp>\n\u003Cp>Whoops gives you a cool interface that is helpful, interactive, and quite nice to look at.  Some features:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>Provides the error message and links to search Google, DuckDuckGo, and Stack Overflow.\u003C\u002Fli>\n\u003Cli>Shows the actual code where the error occurred.\u003C\u002Fli>\n\u003Cli>Provides an interactive call stack.  Click each and the actual code appears in the viewer panel.\u003C\u002Fli>\n\u003Cli>Environment and details including GET Data, POST Data, Files, Cookie, Session, Server\u002FRequest Data, Environment Variables, and Registered Handlers.\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>See the tools in action in this video\u003C\u002Fp>\n\u003Cp>\u003Ciframe loading=\"lazy\" title=\"Introducing the Debug Toolkit Plugin for WordPress\" src=\"https:\u002F\u002Fplayer.vimeo.com\u002Fvideo\u002F322351688?dnt=1&app_id=122963\" width=\"750\" height=\"422\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture; clipboard-write\">\u003C\u002Fiframe>\u003C\u002Fp>\n\u003Ch3>Better Variable Inspection\u003C\u002Fh3>\n\u003Cp>Though X-debug is powerful, it can be difficult to set up and run.  For that reason, it’s common to dump or print out the variable to browser.  But the built-in display for the PHP \u003Ccode>var_dump\u003C\u002Fcode> and \u003Ccode>print_r\u003C\u002Fcode> is basic.\u003C\u002Fp>\n\u003Cp>This plugin includes both two very popular variable dumper tools:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fsymfony.com\u002Fdoc\u002Fcurrent\u002Fcomponents\u002Fvar_dumper.html\" rel=\"nofollow ugc\">VarDumper from Symfony\u003C\u002Fa>\u003C\u002Fli>\n\u003Cli>\u003Ca href=\"https:\u002F\u002Fkint-php.github.io\u002Fkint\u002F\" rel=\"nofollow ugc\">Kint – a modern and powerful PHP debugging helper\u003C\u002Fa>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>VarDumper provides a simple container that displays where you place it.\u003C\u002Fp>\n\u003Cp>On the other hand, Kint provides a more powerful interface that gives you more information such as printing out the expression that was passed into it, the data type, memory size, and the value.\u003C\u002Fp>\n\u003Cp>To make it even easier, the following utility functions are available for you to use in your code:\u003C\u002Fp>\n\u003Ch4>Available Functions for Inspecting Variable Values\u003C\u002Fh4>\n\u003Cp>Let’s explore the functions that are available for you through this plugin.  We’ll use the variable inspectors to dump \u003Ccode>global $post\u003C\u002Fcode>.\u003C\u002Fp>\n\u003Cp>Note: You can pass in any variable or function that returns a value.\u003C\u002Fp>\n\u003Cp>Dumps the given variable(s):\u003C\u002Fp>\n\u003Cpre>\u003Ccode>global $post;\n\n\u002F\u002F VarDumper\nvdump( $post );\n\n\u002F\u002F Kint\ndump( $post );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>Dumps the given variable(s) and then exits the program’s execution:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>global $post;\n\n\u002F\u002F VarDumper\nvdump_and_die( $post );\n\n\u002F\u002F Kint\ndump_and_die( $post );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Cp>In addition, there are alias (shorthand) functions available for you if you prefer shorter function names:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ccode>vd()\u003C\u002Fcode> is an alias for \u003Ccode>vdump()\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>\u003Ccode>vdd()\u003C\u002Fcode> and \u003Ccode>vdd()\u003C\u002Fcode> are aliases for \u003Ccode>vdump_and_die()\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>\u003Ccode>d()\u003C\u002Fcode> is an alias for \u003Ccode>dump()\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>\u003Ccode>dd()\u003C\u002Fcode> and \u003Ccode>ddd()\u003C\u002Fcode> are aliases for \u003Ccode>dump_and_die()\u003C\u002Fcode>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Tracing Call Stack\u003C\u002Fh3>\n\u003Cp>When debugging, there are times when you need to see the order in which functions were called that lead to a certain point in the program.  PHP offers a backtrace that traces back the execution order from the point when the function is invoked.\u003C\u002Fp>\n\u003Cp>To make backtracing easier, this plugin provides you with a \u003Ccode>trace()\u003C\u002Fcode> function and combines it with the variable inspect functions.\u003C\u002Fp>\n\u003Cp>For example, if you wanted to trace the call stack to the start of the loop in your theme’s \u003Ccode>functions.php\u003C\u002Fcode> file, you could use this code:\u003C\u002Fp>\n\u003Cpre>\u003Ccode>add_action( 'loop_start', function() {\n    trace();\n} );\n\u003C\u002Fcode>\u003C\u002Fpre>\n\u003Ch4>Available Trace Functions\u003C\u002Fh4>\n\u003Cp>Place these functions at the point where you want to trace the call stack.\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ccode>trace();\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>\u003Ccode>trace_vdump();\u003C\u002Fcode> – Combines \u003Ccode>trace()\u003C\u002Fcode> and \u003Ccode>vdump()\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>\u003Ccode>trace_dump();\u003C\u002Fcode> – Combines \u003Ccode>trace()\u003C\u002Fcode> and \u003Ccode>dump()\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>\u003Ccode>trace_vdump_and_die();\u003C\u002Fcode> – Combines \u003Ccode>trace()\u003C\u002Fcode> and \u003Ccode>vdump_and_die()\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>\u003Ccode>trace_dump_and_die();\u003C\u002Fcode> – Combines \u003Ccode>trace()\u003C\u002Fcode> and \u003Ccode>dump_and_die()\u003C\u002Fcode>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Cp>In addition, there are alias (shorthand) functions available for you if you prefer shorter function names:\u003C\u002Fp>\n\u003Cul>\n\u003Cli>\u003Ccode>tracevd();\u003C\u002Fcode> – Combines \u003Ccode>trace()\u003C\u002Fcode> and \u003Ccode>vd()\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>\u003Ccode>traced();\u003C\u002Fcode> – Combines \u003Ccode>trace()\u003C\u002Fcode> and \u003Ccode>d()\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>\u003Ccode>tracevdd();\u003C\u002Fcode> – Combines \u003Ccode>trace()\u003C\u002Fcode> and \u003Ccode>vdd()\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>\u003Ccode>tracedd();\u003C\u002Fcode> – Combines \u003Ccode>trace()\u003C\u002Fcode> and \u003Ccode>dd()\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>\u003Ccode>tracevddd();\u003C\u002Fcode> – Combines \u003Ccode>trace()\u003C\u002Fcode> and \u003Ccode>vddd()\u003C\u002Fcode>\u003C\u002Fli>\n\u003Cli>\u003Ccode>traceddd();\u003C\u002Fcode> – Combines \u003Ccode>trace()\u003C\u002Fcode> and \u003Ccode>ddd()\u003C\u002Fcode>\u003C\u002Fli>\n\u003C\u002Ful>\n\u003Ch3>Admin Bar\u003C\u002Fh3>\n\u003Cp>“DEBUG ACTIVE” indicator displays in the WordPress admin bar to alert you when the plugin is active.\u003C\u002Fp>\n","Code debug made easier and more enjoyable.",20,8785,13,"2019-03-11T15:34:00.000Z","4.9",[126,20,52,54,55],"backtrace","https:\u002F\u002Fwordpress.org\u002Fplugins\u002Fdebug-toolkit","https:\u002F\u002Fdownloads.wordpress.org\u002Fplugin\u002Fdebug-toolkit.1.0.1.zip",{"attackSurface":130,"codeSignals":136,"taintFlows":143,"riskAssessment":144,"analyzedAt":147},{"hooks":131,"ajaxHandlers":132,"restRoutes":133,"shortcodes":134,"cronEvents":135,"entryPointCount":27,"unprotectedCount":27},[],[],[],[],[],{"dangerousFunctions":137,"sqlUsage":138,"outputEscaping":140,"fileOperations":27,"externalRequests":27,"nonceChecks":27,"capabilityChecks":27,"bundledLibraries":142},[],{"prepared":27,"raw":27,"locations":139},[],{"escaped":27,"rawEcho":27,"locations":141},[],[],[],{"summary":145,"deductions":146},"The \"laravel-dd\" plugin v1.0.1 exhibits an excellent security posture based on the provided static analysis data. There are no identified entry points such as AJAX handlers, REST API routes, shortcodes, or cron events. Furthermore, the code analysis reveals no dangerous functions, no direct SQL queries (all use prepared statements), no unescaped output, no file operations, and no external HTTP requests. The absence of taint analysis findings and a clean vulnerability history further reinforce its strong security standing. This plugin appears to be exceptionally well-secured, adhering to best practices by minimizing its attack surface and thoroughly sanitizing any potential interactions.",[],"2026-03-16T18:50:19.284Z",{"wat":149,"direct":156},{"assetPaths":150,"generatorPatterns":152,"scriptPaths":153,"versionParams":155},[151],"\u002Fwp-content\u002Fplugins\u002Flaravel-dd\u002Fvendor\u002Fsymfony\u002Fvar-dumper\u002Fvar-dumper.css",[],[154],"\u002Fwp-content\u002Fplugins\u002Flaravel-dd\u002Fvendor\u002Fsymfony\u002Fvar-dumper\u002Fvar-dumper.js",[],{"cssClasses":157,"htmlComments":159,"htmlAttributes":160,"restEndpoints":163,"jsGlobals":164,"shortcodeOutput":165},[158],"sf-dump",[],[161,162],"data-depth","data-parent",[],[],[]]