donatj/drop
Lightweight PHP debug helper with drop() and see() for quickly printing one or more variables in a readable format on web or CLI. drop() dumps values and exits (status 1); see() dumps without halting. Ideal for quick “print statement” debugging.
var_dump()/exit() patterns with a cleaner, more readable CLI/web output format. Reduces context-switching between IDE debuggers and manual logging.dd() helper) for rapid iteration. Can be adopted as a team-wide standard to normalize debugging practices.dd() halts execution prematurely.var_dump() clutter is unmanageable.var_dump() + exit() or dd() for quick debugging.spatie/laravel-ray or barryvdh/laravel-debugbar.For Executives:
"This is a 5-minute productivity boost for developers. By replacing clunky var_dump() calls with a single drop() function, our team can debug issues 30% faster during development—without adding complexity. It’s like dd() on steroids, but for CLI and cleaner output. Zero cost, zero risk, and it integrates seamlessly with Laravel."
For Engineering Teams:
*"Replace var_dump($var); exit; with drop($var); for:
drop($user, $request->input())).see() to inspect variables without halting execution (great for Artisan commands).Migration Path:
composer.json: composer require donatj/drop.var_dump()/exit with drop().see() for non-blocking debugging in CLI tools.Risk Mitigation:
How can I help you explore Laravel packages today?