Componette

Componette

jvitasek

jvitasek / DumpAndDie 1.3

☠️ DumpAndDie: Laravel's dd function ported to Nette Tracy

download-cloud-line composer require jvitasek/dumpanddie

DumpAndDie: Laravel dd() function in Tracy

Total Downloads Version

dd() is a function in Laravel used to dump one or more variables and die. This is the implementation supporting this functionality in the Tracy Panel (from Nette Framework debugger).

Installation

The best way to install jvitasek/DumpAndDie is using Composer:

$ composer require jvitasek/dumpanddie

Usage in browser

<?php declare(strict_types = 1);

use Nette\Application\UI\Presenter;

final class TestPresenter extends Presenter {

    public function actionDefault(): void
    {
        $price = 42;
        $filename = sha1((string) ($price + time())) . '.log';
        
        // write this
        dd($price, $filename);
        
        // instead of this
        \Tracy\Debugger::barDump($price);
        \Tracy\Debugger::barDump($filename);
        die(1);
    }

}

Usage in CLI

<?php declare(strict_types = 1);

use Tracy\Debugger;

require __DIR__ . '/../vendor/autoload.php';
Debugger::enable(Debugger::DEVELOPMENT);
$price = 42;
$filename = sha1((string) ($price + time())) . '.log';
dd($price, $filename);
  • 1.3 Edited required version of Tracy

  • 1.2 dd() now works in CLI via dump()

  • 1.1 dd() is now a function rather than class method

  • 1.0 Baseline release

bar-chart-fill

Statistics

download-cloud-fill
644
star-fill
2
bug-fill
0
flashlight-fill
2.9y
price-tag-2-line

Badges

guide-fill

Dependencies

Componette Componette felix@nette.org