redaxo/debug

REDAXO debug addon

Maintainers

Package info

github.com/redaxo/debug

Homepage

Type:redaxo-addon

pkg:composer/redaxo/debug

Statistics

Installs: 2

Dependents: 0

Suggesters: 0

Stars: 0

6.x-dev 2026-05-31 06:58 UTC

This package is auto-updated.

Last update: 2026-06-01 15:53:11 UTC


README

The debug addon extends REDAXO with tools for better performance and error analysis.

It is based on Clockwork and thus offers a browser-based interface, to visualise the processes within the REDAXO CMS.

Clockwork is a development tool for PHP available right in your browser. Clockwork gives you an insight into your application runtime - including request data, performance metrics, log entries, database queries, cache queries, redis commands, dispatched events, queued jobs, rendered views and more - for HTTP requests, commands, queue jobs and tests. Clockwork Project

It can be used directly in the browser or with a separate browser extension. A detailed description and information on optional browser extensions are available on the Clockwork website.

The add-on integrates information on the following classes in Clockwork:

  • Redaxo\Core\Database\Sql
  • rex_logger
  • rex_timer
  • rex_extension/rex_extension_point

To make your own PHP code visible in Clockwork and to analyse it, it can be measured using rex_timer:

<?php
    rex_timer::measure('ein-repraesentatives-label', function() {
        // beliebiger php-code
    });