This package will add the `dd` and `dump` helpers to your PHP application.

v1.0.0 2022-03-20 11:08 UTC

This package is auto-updated.

Last update: 2024-09-20 16:35:24 UTC


README

This library will add the dd and dump helpers to your PHP application.

⚡️ Install

Run:

composer require tal7aouy/dd

✅ Usage

$arr = ['a'=>'a','b'=>b];
dd($arr);
// or 
dump($arr);

🤓 output:

^ array:2 [▼
  "a" => "a"
  "b" => "b"
]

🚀 For Laravel

Laravel already have the dd function in its helpers. The dd function from this package is equal to the one in Laravel.

dd was created by tal7aouy under the BSD-3-Clause.