PHPackages                             jadu/pulsar-symfony - 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. [API Development](/categories/api)
4. /
5. jadu/pulsar-symfony

ArchivedSymfony-bundle[API Development](/categories/api)

jadu/pulsar-symfony
===================

Integrate Jadu's Pulsar in to Symfony as a bundle

101[6 issues](https://github.com/jadu/pulsar-symfony/issues)[16 PRs](https://github.com/jadu/pulsar-symfony/pulls)PHP

Since May 18Pushed 3y ago18 watchersCompare

[ Source](https://github.com/jadu/pulsar-symfony)[ Packagist](https://packagist.org/packages/jadu/pulsar-symfony)[ RSS](/packages/jadu-pulsar-symfony/feed)WikiDiscussions master Synced 3w ago

READMEChangelogDependenciesVersions (17)Used By (0)

JaduPulsarBundle for Symfony
============================

[](#jadupulsarbundle-for-symfony)

This bundle provides integration for [Pulsar](https://github.com/jadu/pulsar) into Symfony.

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

[](#installation)

Make sure Composer is installed globally, as explained in the [installation chapter](https://getcomposer.org/doc/00-intro.md)of the Composer documentation.

### Step 1: Download the Bundle

[](#step-1-download-the-bundle)

Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:

```
$ composer require jadu/pulsar-symfony
```

### Step 2: Enable the Bundle

[](#step-2-enable-the-bundle)

Then, enable the bundle by adding it to the list of registered bundles in the `app/AppKernel.php` file of your project:

```
// app/AppKernel.php

// ...
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = [
            // ...
            new \Jadu\Bundle\PulsarBundle\JaduPulsarBundle(),
        ];

        // ...
    }

    // ...
}
```

Usage
-----

[](#usage)

### Twig Helpers

[](#twig-helpers)

Pulsar's Twig helpers are automatically registered under the `@JaduPulsar` namespace.

Information on how to use the twig helpers can be found in the [Pulsar Documentation](https://pulsar.docs.jadu.net/).

#### Example

[](#example)

```
{% import '@JaduPulsar/v2/helpers/html.html.twig' as html %}

{{
    html.panel({
        'title': 'In West Philadelphia born and raised',
        'body': 'In the playground was where I spent most of my days.',
        'icon': 'info-sign'
    })
}}
```

### Twig Extensions

[](#twig-extensions)

Pulsar's [Twig extensions](https://github.com/jadu/pulsar/tree/develop/src/Jadu/Pulsar/Twig/Extension) are automatically registered into twig.

Some of these helpers are required in order to use the twig helpers or Symfony forms theme.

#### Example

[](#example-1)

```
Created {{ product.createdAt|time_ago }}
```

### Symfony Form Theme

[](#symfony-form-theme)

This bundle provides the required twig in order to theme Symfony's built in form types into Pulsar.

It's recommended to setup the theme as the default:

```
# app/config/config.yml

twig:
    form_themes:
        - '@JaduPulsar/forms.html.twig'
```

Once registered, generated forms using Symfony's built in form types will be styled into Pulsar.

### Additional Symfony Form Types

[](#additional-symfony-form-types)

This bundle provides additional form types for the form components provided by Pulsar which are not built in by Symfony.

These can be found in the [`Jadu\Bundle\PulsarBundle\Form`](https://github.com/jadu/pulsar-symfony/tree/master/src/Form) namespace.

#### Example

[](#example-2)

```
use Jadu\Bundle\PulsarBundle\Form\ToggleSwitchType;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;

class MyType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add(
                'enabled',
                ToggleSwitchType::class,
                [
                    'required' => false,
                ]
            );

        // ...
    }

    // ...
}
```

###  Health Score

16

—

LowBetter than 4% of packages

Maintenance0

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity44

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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/9383439?v=4)[Jack Bentley](/maintainers/jackbentley)[@jackbentley](https://github.com/jackbentley)

---

Top Contributors

[![Stanton](https://avatars.githubusercontent.com/u/18653?v=4)](https://github.com/Stanton "Stanton (2 commits)")

---

Tags

jadupulsarsymfonysymfony-bundle

### Embed Badge

![Health badge](/badges/jadu-pulsar-symfony/health.svg)

```
[![Health](https://phpackages.com/badges/jadu-pulsar-symfony/health.svg)](https://phpackages.com/packages/jadu-pulsar-symfony)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35916.4M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24016.2M20](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172445.0k12](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93459.5k6](/packages/botman-driver-telegram)

PHPackages © 2026

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