Package Data | |
---|---|
Maintainer Username: | maxbanton |
Maintainer Contact: | hi@maxleonov.pw (Max Leonov) |
Package Create Date: | 2016-06-10 |
Package Last Update: | 2022-05-11 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-19 03:08:36 |
Package Statistics | |
---|---|
Total Downloads: | 9,085 |
Monthly Downloads: | 34 |
Daily Downloads: | 1 |
Total Stars: | 6 |
Total Watchers: | 3 |
Total Forks: | 2 |
Total Open Issues: | 1 |
Very useful for var_dump - like debuggind. Inspired by old school Laravel function. It is particularly convenient to debug console applications, there is no unnecessary HTML code in your terminal.
PHP >= 7.1. If you still use PHP 5.5, please use ^1.0 package version
Install latest version with command
composer require --dev maxbanton/dd ^2.0
<?php
...
dd($arg1);
dd($arg1, $arg2);
...