Make PHP lib functions like dump() or dd() globally available
Never use var_dump() again, even when you work outside Laravel or Symfony
It happens that I work with PHP outside of Laravel or Symfony, typically when working on a lib, and I always miss the dump and dd function. Do you remember var_dump or print_r? I don't want to have to use that! I found a simple way to always preload PHP library. I shouldn't say p...
Read this article