Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 683 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 683 Bytes

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);
...