redaxo / debug
REDAXO debug addon
6.x-dev
2026-05-31 06:58 UTC
Requires
- php: ^8.5
- ext-zip: *
- itsgoingd/clockwork: ^5.3.5
- redaxo/core: @dev
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\Sqlrex_loggerrex_timerrex_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 });