PHPackages                             mascot/web-profiler - 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. mascot/web-profiler

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

mascot/web-profiler
===================

A WebProfiler for Mascot

1.0.0(6y ago)0111MITPHP

Since Apr 3Pushed 6y agoCompare

[ Source](https://github.com/MascotPhp/Mascot-WebProfiler)[ Packagist](https://packagist.org/packages/mascot/web-profiler)[ Docs](https://mascot.rocks/)[ RSS](/packages/mascot-web-profiler/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (1)Dependencies (12)Versions (2)Used By (1)

Silex Web Profiler
==================

[](#silex-web-profiler)

The Mascot Web Profiler service provider allows you to use the wonderful Symfony web debug toolbar and the Symfony profiler in your Mascot application.

To install this library, run the command below and you will get the latest version:

```
composer require 'mascot/web-profiler:^0.1'
```

And enable it in your application:

```
use Mascot\Provider;

$app->register(new Provider\WebProfilerServiceProvider(), array(
    'profiler.cache_dir' => __DIR__.'/../cache/profiler',
    'profiler.mount_prefix' => '/_profiler', // this is the default
));
```

The provider depends on `ServiceControllerServiceProvider`, `TwigServiceProvider`, and `HttpFragmentServiceProvider` so you also need to enable those if that's not already the case:

```
$app->register(new Provider\HttpFragmentServiceProvider());
$app->register(new Provider\ServiceControllerServiceProvider());
$app->register(new Provider\TwigServiceProvider());
```

If you are using `FormServiceProvider`, the `WebProfilerServiceProvider`will detect that and enable the corresponding panels.

*Make sure to register all other required or used service providers before*`WebProfilerServiceProvider`.

If you are using `MonologServiceProvider` for logs, you must also add `symfony/monolog-bridge` as a Composer dependency to get the logs in the profiler.

If you are using `VarDumperServiceProvider`, add `symfony/debug-bundle` as a Composer dependency to display VarDumper dumps in the toolbar and the profiler.

If you are using `symfony/security`, add `symfony/security-bundle` as a Composer dependency to display Security related information in the toolbar and the profiler.

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community21

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 69.6% 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

Unknown

Total

1

Last Release

2231d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/29dba0e6add8d89fd3fc6126b213d5d2f57538ea78318963025d6ea98db34161?d=identicon)[harikt](/maintainers/harikt)

---

Top Contributors

[![fabpot](https://avatars.githubusercontent.com/u/47313?v=4)](https://github.com/fabpot "fabpot (87 commits)")[![GromNaN](https://avatars.githubusercontent.com/u/400034?v=4)](https://github.com/GromNaN "GromNaN (6 commits)")[![igorw](https://avatars.githubusercontent.com/u/88061?v=4)](https://github.com/igorw "igorw (4 commits)")[![harikt](https://avatars.githubusercontent.com/u/120454?v=4)](https://github.com/harikt "harikt (4 commits)")[![glaubinix](https://avatars.githubusercontent.com/u/442056?v=4)](https://github.com/glaubinix "glaubinix (2 commits)")[![danez](https://avatars.githubusercontent.com/u/231804?v=4)](https://github.com/danez "danez (2 commits)")[![iGusev](https://avatars.githubusercontent.com/u/1555767?v=4)](https://github.com/iGusev "iGusev (1 commits)")[![jeremyFreeAgent](https://avatars.githubusercontent.com/u/176363?v=4)](https://github.com/jeremyFreeAgent "jeremyFreeAgent (1 commits)")[![Mashkin](https://avatars.githubusercontent.com/u/1668814?v=4)](https://github.com/Mashkin "Mashkin (1 commits)")[![mTorres](https://avatars.githubusercontent.com/u/473169?v=4)](https://github.com/mTorres "mTorres (1 commits)")[![mvanbaak](https://avatars.githubusercontent.com/u/1928231?v=4)](https://github.com/mvanbaak "mvanbaak (1 commits)")[![qkdreyer](https://avatars.githubusercontent.com/u/717869?v=4)](https://github.com/qkdreyer "qkdreyer (1 commits)")[![sarim](https://avatars.githubusercontent.com/u/1235888?v=4)](https://github.com/sarim "sarim (1 commits)")[![sergiors](https://avatars.githubusercontent.com/u/2046276?v=4)](https://github.com/sergiors "sergiors (1 commits)")[![skalpa](https://avatars.githubusercontent.com/u/4943191?v=4)](https://github.com/skalpa "skalpa (1 commits)")[![softius](https://avatars.githubusercontent.com/u/586121?v=4)](https://github.com/softius "softius (1 commits)")[![SpacePossum](https://avatars.githubusercontent.com/u/10462973?v=4)](https://github.com/SpacePossum "SpacePossum (1 commits)")[![stof](https://avatars.githubusercontent.com/u/439401?v=4)](https://github.com/stof "stof (1 commits)")[![teameh](https://avatars.githubusercontent.com/u/1330668?v=4)](https://github.com/teameh "teameh (1 commits)")[![bangpound](https://avatars.githubusercontent.com/u/6731?v=4)](https://github.com/bangpound "bangpound (1 commits)")

### Embed Badge

![Health badge](/badges/mascot-web-profiler/health.svg)

```
[![Health](https://phpackages.com/badges/mascot-web-profiler/health.svg)](https://phpackages.com/packages/mascot-web-profiler)
```

###  Alternatives

[symfony/web-profiler-bundle

Provides a development tool that gives detailed information about the execution of any request

2.3k149.7M969](/packages/symfony-web-profiler-bundle)[symfony/debug-bundle

Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework

2.4k115.8M824](/packages/symfony-debug-bundle)[shopware/platform

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k16.7M310](/packages/easycorp-easyadmin-bundle)[ec-cube/ec-cube

EC-CUBE EC open platform.

78527.0k1](/packages/ec-cube-ec-cube)[spatie/laravel-ray

Easily debug Laravel apps

31538.4M2.8k](/packages/spatie-laravel-ray)

PHPackages © 2026

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