/dd

👨🏻‍💻 Use dd and dump to your PHP application like the one in Laravel. .

Primary LanguagePHPBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

dd

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.