Laravel's old school style dump library

Maintainers

👁 maxbanton

Package info

github.com/maxbanton/dd

pkg:composer/maxbanton/dd

Statistics

Installs: 9 476

Dependents: 1

Suggesters: 6

Stars: 6

Open Issues: 1

2.0 2018-08-16 13:41 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 42c0013863795383a7d1286445b410347fa1f2bf

  • Max Leonov <hi.woop@maxleonov.pw>

This package is auto-updated.

Last update: 2026-06-11 19:25:51 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);
...