componenta/error-renderer-symfony

Symfony error renderer integration for Componenta error handling

Maintainers

Package info

github.com/componenta/error-renderer-symfony

pkg:composer/componenta/error-renderer-symfony

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.0.0 2026-06-15 10:58 UTC

This package is auto-updated.

Last update: 2026-06-15 12:06:39 UTC


README

Symfony error renderer integration for componenta/error-handler. It adapts symfony/error-handler to ErrorRendererInterface.

Installation

composer require componenta/error-renderer-symfony

Main API

use Componenta\Error\Renderer\SymfonyRenderer;

$renderer = new SymfonyRenderer();
$html = $renderer->render($exception, $context);

SymfonyRenderer always supports the passed exception/context pair. Select it explicitly or place it in a composite renderer when an application wants Symfony HTML pages.

Boundary

This package only renders error output. It does not decide whether an exception is reportable and does not emit HTTP responses.

Related Packages