PHPackages                             prezent/pulse-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. prezent/pulse-bundle

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

prezent/pulse-bundle
====================

Basic analytics event tracking in Symfony

0.1.1(9y ago)0428MITPHPPHP ^5.6|^7.0

Since Nov 29Pushed 9y ago4 watchersCompare

[ Source](https://github.com/Prezent/pulse-bundle)[ Packagist](https://packagist.org/packages/prezent/pulse-bundle)[ Docs](http://www.prezent.nl)[ RSS](/packages/prezent-pulse-bundle/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (2)Versions (3)Used By (0)

prezent/pulse-bundle
====================

[](#prezentpulse-bundle)

Basic analytics event tracking in Symfony

The full documentation can be found in [Resources/doc](src/Resources/doc/index.md)

Quickstart example
------------------

[](#quickstart-example)

```
namespace AppBundle\Controller;

use Prezent\PulseBundle\Event\PulseEvent;
use Prezent\PulseBundle\Query\Query;
use Symfony\Bundle\FrameworkBundle\Controller\Controller

class AppController extends Controller
{
    public function trackableAction()
    {
        $this->get('event_dispatcher')->dispatch(PulseEvent::EVENT, new PulseEvent('some.action', [
            'user' => $this->getUser()->getId(),
        ]));
    }

    public function analyticsAction()
    {
        $query = new Query();
        $query
            ->setTypes(['some.action', 'other.action'])
            ->setStartDate(new \DateTime('-7 days'))
            ->setEndDate(new \DateTime())
        ;

        return $this->render('AppBundle:App:analytics.html.twig', [
            'result' => $this->get('prezent_pulse.repository')->query($query),
        ]);
    }
}
```

```
{% extends '::base.html.twig' %}

{% block body %}

                {% for column in result.columns %}
                    {{ column }}
                {% endfor %}
                Total

            {% for row in result %}

                    {{ row.key }}: {{ row.id }}
                    {% for value in row %}
                        {{ value }}
                    {% endfor %}
                    {{ row.total }}

            {% endfor %}

                Total
                {% for value in result.columnTotals %}
                    {{ value }}
                {% endfor %}
                {{ result.total }}

{% endblock %}
```

###  Health Score

25

—

LowBetter than 36% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity49

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

Total

2

Last Release

3499d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/4508883?v=4)[Prezent Internet B.V.](/maintainers/prezent)[@Prezent](https://github.com/Prezent)

---

Top Contributors

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

---

Tags

eventstrackinganalytics

### Embed Badge

![Health badge](/badges/prezent-pulse-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/prezent-pulse-bundle/health.svg)](https://phpackages.com/packages/prezent-pulse-bundle)
```

###  Alternatives

[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k17.5M378](/packages/easycorp-easyadmin-bundle)[rcsofttech/audit-trail-bundle

Enterprise-grade, high-performance Symfony audit trail bundle. Automatically track Doctrine entity changes with split-phase architecture, multiple transports (HTTP, Queue, Doctrine), and sensitive data masking.

1175.2k](/packages/rcsofttech-audit-trail-bundle)[2lenet/crudit-bundle

The easy like Crud'it Bundle.

1615.6k12](/packages/2lenet-crudit-bundle)[ahmed-bhs/doctrine-doctor

Runtime analysis tool for Doctrine ORM integrated into Symfony Web Profiler. Unlike static linters, it analyzes actual query execution at runtime to detect performance bottlenecks, security vulnerabilities, and best practice violations during development with real execution context and data.

939.0k](/packages/ahmed-bhs-doctrine-doctor)

PHPackages © 2026

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