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

ActiveSymfony-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 today

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 5% 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://www.gravatar.com/avatar/a6073dc42f59cca80c74f4a98dff65968825f026eec571c1e5097da66e92c516?d=identicon)[jackbentley](/maintainers/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

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M479](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M271](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

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