marko/errors-advanced

Advanced error handling with Whoops integration for the Marko framework

Maintainers

Package info

github.com/marko-php/marko-errors-advanced

pkg:composer/marko/errors-advanced

Statistics

Installs: 0

Dependents: 0

Suggesters: 1

Stars: 0

0.0.1 2026-03-25 17:53 UTC

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