tal7aouy / dd
This package will add the `dd` and `dump` helpers to your PHP application.
This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.
v1.0.0
2022-03-20 11:08 UTC
Requires
- php: ^8.1
- symfony/var-dumper: *
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.