PHPackages                             dmitry-trish/report-bundle - 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. dmitry-trish/report-bundle

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

dmitry-trish/report-bundle
==========================

Symfony report bundle

1.2(8y ago)134MITPHPPHP &gt;=5.3.3

Since May 12Pushed 8y ago1 watchersCompare

[ Source](https://github.com/DmitryTrish/dtReportBundle)[ Packagist](https://packagist.org/packages/dmitry-trish/report-bundle)[ Docs](https://github.com/DmitryTrish/dtReportBundle)[ RSS](/packages/dmitry-trish-report-bundle/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (3)DependenciesVersions (3)Used By (0)

Symfony Report Bundle
=====================

[](#symfony-report-bundle)

by Dmitry Trish

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

[](#installation)

- Add composer package `$ composer require dmitry-trish/report-bundle`
- Add `new DmitryTrish\ReportBundle\DmitryTrishReportBundle()` in **appKernel.php** $bundles array
- Update your DB schema `$ ./bin/console doctrine:schema:update --force`

Usage
-----

[](#usage)

Get report service in your controller or whatever your want.

```
$service = $this->get('dmitry_trish.report.report_service');
```

Then create a report form. It's handling request automatically.

```
$form = $service->createForm();
```

Register submitted form by call **register** method.

```
if ($form->isSubmitted() && $form->isValid()) {
    $service->register($form->getData());
}
```

### Advanced

[](#advanced)

You can register report without creating and handling form. Just create new Report instance and provide report text. Then register it.

```
use DmitryTrish\ReportBundle\Entity\Report;
...

$report = new Report();
$report->setText('Some report text');

$service->register($report);
```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community5

Small or concentrated contributor base

Maturity59

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

Total

3

Last Release

3258d ago

### Community

---

Top Contributors

[![DmitryTrish](https://avatars.githubusercontent.com/u/1653423?v=4)](https://github.com/DmitryTrish "DmitryTrish (1 commits)")

---

Tags

bugtrackerphpreportingsymfonysymfony-bundle

### Embed Badge

![Health badge](/badges/dmitry-trish-report-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/dmitry-trish-report-bundle/health.svg)](https://phpackages.com/packages/dmitry-trish-report-bundle)
```

PHPackages © 2026

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