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.3(2mo ago)03MITPHPPHP &gt;=8.3

Since Sep 2Pushed 2mo 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 2w ago

READMEChangelogDependencies (88)Versions (5)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

40

—

FairBetter than 86% of packages

Maintenance83

Actively maintained with recent releases

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

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

Total

4

Last Release

86d ago

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

1.0.1PHP &gt;=8.3

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/11459248?v=4)[Jozef Môstka](/maintainers/tito10047)[@tito10047](https://github.com/tito10047)

---

Top Contributors

[![tito10047](https://avatars.githubusercontent.com/u/11459248?v=4)](https://github.com/tito10047 "tito10047 (10 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

[chameleon-system/chameleon-base

The Chameleon System core.

1029.4k6](/packages/chameleon-system-chameleon-base)[kimai/kimai

Kimai - Time Tracking

4.8k9.4k1](/packages/kimai-kimai)[sylius/sylius

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

8.5k6.0M778](/packages/sylius-sylius)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

595.8M674](/packages/shopware-core)[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k18.3M430](/packages/easycorp-easyadmin-bundle)[pimcore/pimcore

Content &amp; Product Management Framework (CMS/PIM/E-Commerce)

3.8k3.9M535](/packages/pimcore-pimcore)

PHPackages © 2026

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