PHPackages                             brainworxx/includekrexx - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Logging &amp; Monitoring](/categories/logging)
4. /
5. brainworxx/includekrexx

ActiveTypo3-cms-extension[Logging &amp; Monitoring](/categories/logging)

brainworxx/includekrexx
=======================

kreXX Debugger - Alternative for `f:debug` (fluid) and `debug();` (PHP) with additional analysis features and logging options.

v6.1.5(3mo ago)522.9k↓18.9%1LGPL-2.1-or-laterPHPPHP ^7.4 || ^8.0 || ^8.1 || ^8.2 || ^8.3 || ^8.4 || ^8.5CI passing

Since May 4Pushed 2mo ago3 watchersCompare

[ Source](https://github.com/brainworxx/kreXX-TYPO3-Extension)[ Packagist](https://packagist.org/packages/brainworxx/includekrexx)[ Docs](https://github.com/brainworxx/kreXX-TYPO3-Extension)[ RSS](/packages/brainworxx-includekrexx/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (7)Versions (63)Used By (1)

[![build](https://github.com/brainworxx/kreXX-TYPO3-Extension/actions/workflows/php.yml/badge.svg?branch=main)](https://github.com/brainworxx/kreXX-TYPO3-Extension/actions/workflows/php.yml) [![maintainability](https://camo.githubusercontent.com/9c4ccd2092a0db2f77484ab8e7b3f9cc37f4a146550d09e8809d3eb282cffe87/68747470733a2f2f716c74792e73682f6261646765732f61616466666562392d313433312d343233302d623237312d6366656365366631613435372f6d61696e7461696e6162696c6974792e737667)](https://qlty.sh/gh/brainworxx/projects/kreXX-TYPO3-Extension) [![coverage](https://camo.githubusercontent.com/0e5ffc3a32d2df47884bdad274278ab25a0c926b2ffc675ad9782d938e9918ae/68747470733a2f2f716c74792e73682f6261646765732f61616466666562392d313433312d343233302d623237312d6366656365366631613435372f746573745f636f7665726167652e737667)](https://qlty.sh/gh/brainworxx/projects/kreXX-TYPO3-Extension)

[![stable](https://camo.githubusercontent.com/f1a9af42ad85fde2239f7251c978ea74ce1530f58e0e41e53f1404d684223c3a/68747470733a2f2f706f7365722e707567782e6f72672f627261696e776f7278782f696e636c7564656b726578782f762f737461626c653f7374796c653d666c61742d737175617265)](https://packagist.org/packages/brainworxx/includekrexx) [![t310](https://camo.githubusercontent.com/cc1b7063888c8b51454eba1d97cf837c15676c490188a6f0e9400137eebac772/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5459504f332d31302d6f72616e67652e7376673f7374796c653d666c61742d737175617265)](https://get.typo3.org/version/10) [![t311](https://camo.githubusercontent.com/95b97bf30b8b5b6165cafd25cef0d9dac36c06ceae2a71021f6c58bd39e30843/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5459504f332d31312d6f72616e67652e7376673f7374796c653d666c61742d737175617265)](https://get.typo3.org/version/11) [![t312](https://camo.githubusercontent.com/5988c2b3fbc4d962eb8b98b039607aea05b319ac41e106ec771361a45598caed/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5459504f332d31322d6f72616e67652e7376673f7374796c653d666c61742d737175617265)](https://get.typo3.org/version/12) [![t313](https://camo.githubusercontent.com/736311568ec9205d9514b2264785750e198a4a26243578a9dff7f7bdb84a5d05/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5459504f332d31332d6f72616e67652e7376673f7374796c653d666c61742d737175617265)](https://get.typo3.org/version/13) [![license](https://camo.githubusercontent.com/b4b9f4840844a181067dbded81421f35915814a2a356f72c12f504228ee9ba0b/68747470733a2f2f706f7365722e707567782e6f72672f627261696e776f7278782f696e636c7564656b726578782f6c6963656e73653f7374796c653d666c61742d737175617265)](https://packagist.org/packages/brainworxx/includekrexx)

kreXX Debugger - TYPO3 Backend Extension
----------------------------------------

[](#krexx-debugger---typo3-backend-extension)

[![kreXX logo](https://github.com/brainworxx/kreXX-TYPO3-Extension/raw/main/Documentation/Images/krexx.png)](https://github.com/brainworxx/kreXX-TYPO3-Extension/blob/main/Documentation/Images/krexx.png)

Fluid (and PHP) debugger with backend access to logfiles, code generation to reach the displayed values and much more. We added some special stuff for Aimeos.

Title **kreXX mainlibrary****Documentation****TER:**What does it do?
----------------

[](#what-does-it-do)

To put it simple: kreXX is an alternative for the fluid debugger ``.

The problem with `` is that is can be a little bit discrete when debugging objects. It only shows protected properties which may or may not be reachable in the template file.

kreXX gives you a good overview about the object and how to reach specific values inside.

```

{_all}

{_all}
```

[![Fluid debugging with code snippet generation.](https://raw.githubusercontent.com/brainworxx/kreXX-TYPO3-Extension/refs/heads/main/Documentation/Images/Fluid.png)](https://raw.githubusercontent.com/brainworxx/kreXX-TYPO3-Extension/refs/heads/main/Documentation/Images/Fluid.png)Fluid debugging with code snippet generation.

You can also use it as a PHP debugger:

```
// Normal frontend output
krexx($myObject);
// Force the logging into a file
krexxlog($myObject);
```

Logging
-------

[](#logging)

To use kreXX as a logger simply use the logger ViewHelper:

```
{_all}
```

The access to the logs files can be found in the first tab of the backend module. The list is automatically updated by ajax every few seconds.

Each entry has a unique colour to make new files better recognisable,

[![Logfiles backend menu](https://raw.githubusercontent.com/brainworxx/kreXX-TYPO3-Extension/refs/heads/main/Documentation/Images/Logging.png)](https://raw.githubusercontent.com/brainworxx/kreXX-TYPO3-Extension/refs/heads/main/Documentation/Images/Logging.png)

To make these logfiles easier accessible, we have provided a backend menu, where you can easily view them. The list is automatically updated.

To prevent these files from clogging up your system, kreXX will only keep **10** files and automatically delete older ones. This value can also be changed the logging option **Maximum files in the log folder** to any number bigger than 0.

A file can be access by simply clicking on the filename. The trashcan on the right deletes the file.

[![Logfiles in the Admin Panel](https://raw.githubusercontent.com/brainworxx/kreXX-TYPO3-Extension/refs/heads/main/Documentation/Images/AdminPanel.png)](https://raw.githubusercontent.com/brainworxx/kreXX-TYPO3-Extension/refs/heads/main/Documentation/Images/AdminPanel.png)

Alternatively, you can access the logfiles by using the TYPO3 Admin Panel.

###  Health Score

61

—

FairBetter than 99% of packages

Maintenance84

Actively maintained with recent releases

Popularity32

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity95

Battle-tested with a long release history

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~62 days

Recently: every ~33 days

Total

58

Last Release

95d ago

Major Versions

1.4.2 → 2.0.02016-08-30

2.4.0 → 3.0.02018-10-02

v3.3.x-dev → v4.0.02020-10-27

v4.1.x-dev → v5.0.02023-09-23

v5.1.x-dev → v6.0.02025-07-29

PHP version history (14 changes)2.3.1PHP &gt;=5.3.0 &lt;=7.1.99

2.4.0PHP &gt;=5.3.0 &lt;=7.2.99

3.1.0PHP &gt;=5.3.0 &lt;=7.3.99

3.2.0PHP &gt;=5.5.0 &lt;=7.3.99

v3.3.1PHP &gt;=5.5.0 &lt;=7.4.99

v4.0.0PHP ^7.0 || ^7.1 || ^7.2 || ^7.3 || ^7.4

v4.1.2PHP ^7.0 || ^7.1 || ^7.2 || ^7.3 || ^7.4 || ^8.0

v4.1.3PHP ^7.0 || ^7.1 || ^7.2 || ^7.3 || ^7.4 || ^8.0 || ^8.1

v4.1.8PHP ^7.0 || ^7.1 || ^7.2 || ^7.3 || ^7.4 || ^8.0 || ^8.1 || ^8.2

v5.0.0PHP ^7.2 || ^7.3 || ^7.4 || ^8.0 || ^8.1 || ^8.2

v5.0.1PHP ^7.2 || ^7.3 || ^7.4 || ^8.0 || ^8.1 || ^8.2 || ^8.3

v5.1.2PHP ^7.2 || ^7.3 || ^7.4 || ^8.0 || ^8.1 || ^8.2 || ^8.3 || ^8.4

v6.0.0PHP ^7.4 || ^8.0 || ^8.1 || ^8.2 || ^8.3 || ^8.4

v6.1.3PHP ^7.4 || ^8.0 || ^8.1 || ^8.2 || ^8.3 || ^8.4 || ^8.5

### Community

Maintainers

![](https://www.gravatar.com/avatar/2540d530fb1f0ba2f268b7d3de7190e562901132b52d8c3cb577940076b108bb?d=identicon)[guelzow](/maintainers/guelzow)

---

Top Contributors

[![guelzow](https://avatars.githubusercontent.com/u/11192910?v=4)](https://github.com/guelzow "guelzow (1610 commits)")

---

Tags

logdebugdevelopervardump

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/brainworxx-includekrexx/health.svg)

```
[![Health](https://phpackages.com/badges/brainworxx-includekrexx/health.svg)](https://phpackages.com/packages/brainworxx-includekrexx)
```

###  Alternatives

[analog/analog

Fast, flexible, easy PSR-3-compatible PHP logging package with dozens of handlers.

3451.5M24](/packages/analog-analog)[inpsyde/wonolog

Monolog-based logging package for WordPress.

183617.9k7](/packages/inpsyde-wonolog)[baibaratsky/yii2-rollbar

Rollbar for Yii2

35130.5k](/packages/baibaratsky-yii2-rollbar)[pagemachine/typo3-formlog

Form log for TYPO3

23225.3k6](/packages/pagemachine-typo3-formlog)[snapshotpl/zf-snap-php-debug-bar

PHP Debug Bar module for Zend Framework 2

3026.1k](/packages/snapshotpl-zf-snap-php-debug-bar)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
