PHPackages                             evonext/tracy - 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. [Debugging &amp; Profiling](/categories/debugging)
4. /
5. evonext/tracy

ActivePackage[Debugging &amp; Profiling](/categories/debugging)

evonext/tracy
=============

A EvoNext CMS Package to integrate Nette Tracy Debugger

1.1.2(3y ago)09MITPHPPHP ^7.4|^8.0

Since Jul 11Pushed 3y ago1 watchersCompare

[ Source](https://github.com/evonext-cms/tracy)[ Packagist](https://packagist.org/packages/evonext/tracy)[ RSS](/packages/evonext-tracy/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (5)Used By (0)

Integration [Nette Tracy](https://github.com/nette/tracy.git) for EvoNext CMS
-----------------------------------------------------------------------------

[](#integration-nette-tracy-for-evonext-cms)

Better Exception Handler

[![Total Downloads](https://camo.githubusercontent.com/12d43fe61348cb231b315f4b3cb086a43cca56ead5e244177aa104a61b864366/68747470733a2f2f706f7365722e707567782e6f72672f65766f6e6578742f74726163792f642f746f74616c2e737667)](https://packagist.org/packages/evonext/tracy)[![Latest Stable Version](https://camo.githubusercontent.com/48af38c5858bedee234d72c9ea22aea0e88931d97b53fbe6e9a9cc383352b466/68747470733a2f2f706f7365722e707567782e6f72672f65766f6e6578742f74726163792f762f737461626c652e737667)](https://packagist.org/packages/evonext/tracy)[![Latest Unstable Version](https://camo.githubusercontent.com/bebdcd535f7c892859bfdd81aad77b04d0c84fc7743471aefaafb7777bcdf4fb/68747470733a2f2f706f7365722e707567782e6f72672f65766f6e6578742f74726163792f762f756e737461626c652e737667)](https://packagist.org/packages/evonext/tracy)[![License](https://camo.githubusercontent.com/92d85d06c02bab8a39a14f05e42660c16bc376cfd46096ba159328c228760919/68747470733a2f2f706f7365722e707567782e6f72672f65766f6e6578742f74726163792f6c6963656e73652e737667)](https://packagist.org/packages/evonext/tracy)[![Monthly Downloads](https://camo.githubusercontent.com/fb9d81f47d8c80eb9a131f22a0a6076792c689e0833d60dde36a11c81a8be63b/68747470733a2f2f706f7365722e707567782e6f72672f65766f6e6578742f74726163792f642f6d6f6e74686c79)](https://packagist.org/packages/evonext/tracy)[![Daily Downloads](https://camo.githubusercontent.com/1c2d69de25303e03614137e7eb43f9a7f161cfa768f63de0cb4ec3a049d795f7/68747470733a2f2f706f7365722e707567782e6f72672f65766f6e6578742f74726163792f642f6461696c79)](https://packagist.org/packages/evonext/tracy)

[![Laravel Tracy](docs/screenshots/tracy.png)](docs/screenshots/tracy.png)

Features
--------

[](#features)

- Visualization of errors and exceptions
- Debugger Bar (ajax support @v1.5.6)
- Exception stack trace contains values of all method arguments.

Installation
------------

[](#installation)

To get the latest version of Laravel Exceptions, simply require the project using [Composer](https://getcomposer.org):

```
composer require evonext/tracy --dev
```

Instead, you may of course manually update your `require` block and run `composer update` if you so choose:

```
{
    "require-dev": {
        "evonext/tracy": "^1.0"
    }
}
```

Include the service provider within `config/app.php`. The service provider is needed for the generator artisan command.

```
'providers' => [
    ...
    EvoNext\Tracy\TracyServiceProvider::class,
    ...
];
```

If you see Route `tracy.bar` not defined, please run `artisan route:clear` once

```
artisan route:clear
```

Config
------

[](#config)

Basic settings can be changed using environment variables:

```
TRACY_ENABLED=true        # true | false | 'manager' | 'web'
TRACY_SHOW_BAR=true       # true | false
TRACY_EXCEPTION=true      # true | false
TRACY_MGR_TOP_FRAME=false # true | false
```

### Publish config

[](#publish-config)

If you need to change other settings, publish the configuration:

```
php artisan vendor:publish --provider="EvoNext\Tracy\TracyServiceProvider"
```

The `/config` directory will contain the file `tracy.php`, which you can change as you see fit.

```
return [

    /* Activate tracy
    |--------------------------------------------------------------------------
    | Available values:
    | true      – Enable for any context
    | false     – Disable for any context
    | 'manager' – Enable only for manager context (admin area)
    | 'web'     – Enable only for web context (public area)
    |-------------------------------------------------------------------------- */

    'enabled' => env('TRACY_ENABLED', env('APP_DEBUG') === true),

    /* Show bar
    |-------------------------------------------------------------------------- */

    'showBar' => env('TRACY_SHOW_BAR', env('APP_ENV') !== 'production'),

    /* Show exceptions
    |-------------------------------------------------------------------------- */

    'showException' => env('TRACY_EXCEPTION', true),

    /* The URL prefix for the manager dashboard
    |-------------------------------------------------------------------------- */

    'managerPrefix' => 'admin',

    /* The URL prefix for a frame top level the manager dashboard
    |-------------------------------------------------------------------------- */

    'managerTopRoute' => 'main',

    /* If true tracy shown bar in a frame top level
    | instead pages frames in the manager context
    |-------------------------------------------------------------------------- */

    'enabledInTopFrame' => env('TRACY_MGR_TOP_FRAME', false),

    'route'         => [
        'prefix' => 'tracy',
        'as'     => 'tracy.',
    ],
    'accepts'       => [
        'text/html',
    ],
    'appendTo'      => 'body',
    'editor'        => 'editor://%action/?file=%file&line=%line&search=%search&replace=%replace',
    'maxDepth'      => 4,
    'maxLength'     => 1000,
    'scream'        => true,
    'showLocation'  => true,
    'strictMode'    => true,
    'editorMapping' => [],
    'panels'        => [
        'routing'        => true,
        'database'       => true,
        'view'           => true,
        'event'          => false,
        'session'        => true,
        'request'        => true,
        'auth'           => true,
        'html-validator' => false,
    ],
];
```

### Editor Link

[](#editor-link)

See

Debugger Bar
------------

[](#debugger-bar)

*Images clickable*

`@bdump`AjaxSysInfoRoute[![](docs/screenshots/bdump.png)](docs/screenshots/bdump.png)[![](docs/screenshots/ajax.png)](docs/screenshots/ajax.png)[![](docs/screenshots/systeminfo.png)](docs/screenshots/systeminfo.png)[![](docs/screenshots/route.png)](docs/screenshots/route.png)ViewSessionRequestLogin[![](docs/screenshots/view.png)](docs/screenshots/view.png)[![](docs/screenshots/session.png)](docs/screenshots/session.png)[![](docs/screenshots/request.png)](docs/screenshots/request.png)[![](docs/screenshots/login.png)](docs/screenshots/login.png)#### Custom Auth

[](#custom-auth)

```
// app/Providers/AppServiceProvider.php

namespace App\Providers;

use Recca0120\LaravelTracy\BarManager;
use Illuminate\Support\ServiceProvider;

class AppServiceProvider extends ServiceProvider
{
    public function boot(BarManager $barManager)
    {
        $barManager->get('auth')->setUserResolver(function() {
            return [
                'id' => 'xxx',
                'username' => 'xxx',
                ...
            ];
        });
    }
}

```

Thanks
------

[](#thanks)

- [Laravel PHP Framework](https://github.com/laravel/laravel)
- [nette/tracy](https://github.com/nette/tracy)
- [recca0120/laravel-tracy](https://github.com/recca0120/laravel-tracy)

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 90.3% 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 ~56 days

Total

4

Last Release

1237d ago

PHP version history (2 changes)1.0.0PHP ^7.4

1.1.2PHP ^7.4|^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/da66ae23a8bf149e624191400cbb7dfb4ae8fff46fdd5950a058dbdf34d5080d?d=identicon)[delphinpro](/maintainers/delphinpro)

---

Top Contributors

[![recca0120](https://avatars.githubusercontent.com/u/1390554?v=4)](https://github.com/recca0120 "recca0120 (140 commits)")[![delphinpro](https://avatars.githubusercontent.com/u/1081988?v=4)](https://github.com/delphinpro "delphinpro (9 commits)")[![zhichao-poper](https://avatars.githubusercontent.com/u/141097055?v=4)](https://github.com/zhichao-poper "zhichao-poper (2 commits)")[![storyn26383](https://avatars.githubusercontent.com/u/6954098?v=4)](https://github.com/storyn26383 "storyn26383 (1 commits)")[![jrbarnard](https://avatars.githubusercontent.com/u/6758366?v=4)](https://github.com/jrbarnard "jrbarnard (1 commits)")[![duxthefux](https://avatars.githubusercontent.com/u/6758162?v=4)](https://github.com/duxthefux "duxthefux (1 commits)")[![ichi](https://avatars.githubusercontent.com/u/107826?v=4)](https://github.com/ichi "ichi (1 commits)")

---

Tags

laraveldebugprofilerdebugbarwebprofilernetteerrorerror-handlertracyevonextevonext-cms

### Embed Badge

![Health badge](/badges/evonext-tracy/health.svg)

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

###  Alternatives

[recca0120/laravel-tracy

A Laravel Package to integrate Nette Tracy Debugger

388283.0k3](/packages/recca0120-laravel-tracy)[barryvdh/laravel-debugbar

PHP Debugbar integration for Laravel

19.1k124.3M624](/packages/barryvdh-laravel-debugbar)[fruitcake/laravel-debugbar

PHP Debugbar integration for Laravel

19.1k662.9k29](/packages/fruitcake-laravel-debugbar)[fruitcake/laravel-telescope-toolbar

Toolbar for Laravel Telescope based on Symfony Web Profiler

8041.6M3](/packages/fruitcake-laravel-telescope-toolbar)[snowair/phalcon-debugbar

Integrates PHP Debug Bar with Phalcon.

160123.3k1](/packages/snowair-phalcon-debugbar)

PHPackages © 2026

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