PHPackages                             php-bug-catcher/skeleton - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. php-bug-catcher/skeleton

ActiveProject[Utility &amp; Helpers](/categories/utility)

php-bug-catcher/skeleton
========================

Project template for starting your new project based on the Bug Catcher

1.0.2(10mo ago)03MITPHPPHP &gt;=8.3

Since Sep 2Pushed 5mo ago1 watchersCompare

[ Source](https://github.com/php-bug-catcher/skeleton)[ Packagist](https://packagist.org/packages/php-bug-catcher/skeleton)[ Docs](https://github.com/php-bug-catcher/bug-catcher)[ RSS](/packages/php-bug-catcher-skeleton/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (44)Versions (4)Used By (0)

[![Tests](https://github.com/php-bug-catcher/bug-catcher/actions/workflows/symfony.yml/badge.svg)](https://github.com/php-bug-catcher/bug-catcher/actions/workflows/symfony.yml/badge.svg)

Catch every bug in all your PHP applications in one place
=========================================================

[](#catch-every-bug-in-all-your-php-applications-in-one-place)

[![](https://raw.githubusercontent.com/php-bug-catcher/bug-catcher/main/docs/logo/default/horizontal.svg)](https://raw.githubusercontent.com/php-bug-catcher/bug-catcher/main/docs/logo/default/horizontal.svg)

[![](https://raw.githubusercontent.com/php-bug-catcher/bug-catcher/main/docs/bug_catcher_01.png)](https://raw.githubusercontent.com/php-bug-catcher/bug-catcher/main/docs/bug_catcher_01.png)

[![](https://raw.githubusercontent.com/php-bug-catcher/bug-catcher/main/docs/stacktrace.png)](https://raw.githubusercontent.com/php-bug-catcher/bug-catcher/main/docs/stacktrace.png)

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

[](#installation)

### By composer

[](#by-composer)

```
composer create-project php-bug-catcher/skeleton your-project-name
```

### Manual

[](#manual)

**Create blank symfony project**

```
composer create-project symfony/skeleton:"7.1.*" bug-catcher
```

**Add depenedencies**

```
composer require php-bug-catcher/bug-catcher
```

**Enable bundle if not already enabled**

```
//config/bundles.php
return [
    ...
    BugCatcher\BugCatcherBundle::class => ['all' => true],
    ...
];
```

Configuration
-------------

[](#configuration)

**setup packages**

```
#config/packages/twig.yaml
twig:
  #...
  form_themes: [ '@EasyAdmin/symfony-form-themes/bootstrap_5_layout.html.twig' ]
  globals:
    logo: '%logo%'
    app_name: '%env(APP_NAME)%'
```

```
#config/packages/twig_component.yaml
twig_component:
  #...
  defaults:
    #...
    BugCatcher\Twig\Components\: '@BugCatcher/components/'
```

```
#config/packages/webpack_encore.yaml
webpack_encore:
  #...
  builds:
    bug_catcher: '%kernel.project_dir%/public/bundles/bugcatcher/'
framework:
  #...
  assets:
    packages:
      app:
        json_manifest_path: '%kernel.project_dir%/public/build/manifest.json'
      bug_catcher:
        json_manifest_path: '%kernel.project_dir%/public/bundles/bugcatcher/manifest.json'
```

**Security**

follow the instructions in the [Symfony docs](https://symfony.com/doc/current/security.html)Modify these:

```
#config/packages/security.yaml
security:
  #...
  providers:
    app_user_provider:
      entity:
        class: BugCatcher\Entity\User
        property: email
  firewalls:
    #...
    api:
      pattern: ^/api/
      stateless: true
    main:
      #...
      provider: app_user_provider
      form_login:
        login_path: bug_catcher.security.login
        check_path: bug_catcher.security.login
        enable_csrf: true
      logout:
        path: bug_catcher.security.logout
  access_control:
    - { path: ^/login$, role: PUBLIC_ACCESS }
    - { path: ^/api, roles: PUBLIC_ACCESS }
    - { path: ^/admin, roles: ROLE_ADMIN }
    - { path: ^/detail, roles: ROLE_DEVELOPER }
    - { path: ^/_components/LogList/clearAll, roles: ROLE_DEVELOPER }
    - { path: ^/_components/LogList/clearOne, roles: ROLE_DEVELOPER }
    - { path: ^/, roles: ROLE_CUSTOMER }
  role_hierarchy:
    ROLE_ADMIN: ROLE_DEVELOPER
    ROLE_DEVELOPER: ROLE_CUSTOMER
    ROLE_CUSTOMER: ROLE_USER
```

```
#config/packages/doctrine.yaml
doctrine:
  orm:
    #...
    dql:
      string_functions:
        TYPE: BugCatcher\Extension\DQL\TypeFunction
```

```
#config/packages/api_platform.yaml
api_platform:
  #...
  formats:
    #...
    json: [ 'application/json' ]
```

**Routes**

```
#config/routes/bug_catcher.yaml
_bug_catcher:
  resource: "@BugCatcherBundle/config/routes.php"
  prefix: /
```

**Download icons**

```
php bin/console ux:icons:import pajamas:hamburger covid:virus-lab-research-magnifier-1 clarity:archive-line game-icons:magic-broom
```

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance62

Regular maintenance activity

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 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 ~147 days

Total

3

Last Release

328d ago

PHP version history (2 changes)1.0.0PHP &gt;=8.2

1.0.1PHP &gt;=8.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/3d6d558226302620ec462f64672e9dc81609227626923a808005641e76e8c38f?d=identicon)[tito10047](/maintainers/tito10047)

---

Top Contributors

[![tito10047](https://avatars.githubusercontent.com/u/11459248?v=4)](https://github.com/tito10047 "tito10047 (9 commits)")

---

Tags

symfonyproject templateweb-applicationbug-catcherlogview

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/php-bug-catcher-skeleton/health.svg)

```
[![Health](https://phpackages.com/badges/php-bug-catcher-skeleton/health.svg)](https://phpackages.com/packages/php-bug-catcher-skeleton)
```

###  Alternatives

[easycorp/easyadmin-demo

EasyAdmin Demo Application

145.7k](/packages/easycorp-easyadmin-demo)[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[forumify/forumify-platform

121.8k11](/packages/forumify-forumify-platform)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)[kimai/kimai

Kimai - Time Tracking

4.6k7.4k1](/packages/kimai-kimai)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.3M152](/packages/sulu-sulu)

PHPackages © 2026

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