Laravel's old school style dump library

2.0 2018-08-16 13:41 UTC

This package is auto-updated.

Last update: 2024-04-11 14:37:12 UTC


README

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