marko / errors-advanced
Advanced error handling with Whoops integration for the Marko framework
0.0.1
2026-03-25 17:53 UTC
Requires
- php: >=8.5
- marko/errors: 0.0.1
- marko/errors-simple: 0.0.1
Requires (Dev)
- pestphp/pest: ^4.0
This package is auto-updated.
Last update: 2026-03-25 21:07:22 UTC
README
Pretty error pages with syntax-highlighted code, stack traces, and request details --- so you can diagnose issues at a glance during development.
Installation
composer require marko/errors-advanced
Quick Example
Just throw exceptions --- the advanced error handler catches them automatically and renders a rich HTML error page:
use Marko\Core\Exceptions\MarkoException; throw new MarkoException( message: 'Order processing failed', context: 'Processing order #12345', suggestion: 'Check the payment gateway configuration in config/payments.php', );
Documentation
Full usage, API reference, and examples: marko/errors-advanced