Skip to content

maxbanton/dd

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Stand With Ukraine

Dump and die function

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.

Requrements

PHP >= 7.1. If you still use PHP 5.5, please use ^1.0 package version

Installation

Install latest version with command

composer require --dev maxbanton/dd ^2.0

Usage

<?php
...
dd($arg1);
dd($arg1, $arg2);
...