PHPackages                             notifier/notifier-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. [Mail &amp; Notifications](/categories/mail)
4. /
5. notifier/notifier-bundle

ActiveSymfony-bundle[Mail &amp; Notifications](/categories/mail)

notifier/notifier-bundle
========================

Notifier integration for Symfony

05PHP

Since Nov 11Pushed 11y ago1 watchersCompare

[ Source](https://github.com/Notifier/Symfony-Bundle)[ Packagist](https://packagist.org/packages/notifier/notifier-bundle)[ RSS](/packages/notifier-notifier-bundle/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

Symfony-Bundle
==============

[](#symfony-bundle)

[![Build Status](https://camo.githubusercontent.com/f5195022a18bb029e1a5a384431a79e7692557bcf9006d524e0386fb7444e290/68747470733a2f2f7365637572652e7472617669732d63692e6f72672f4e6f7469666965722f53796d666f6e792d42756e646c652e706e67)](https://travis-ci.org/Notifier/Symfony-Bundle)[![Latest Stable Version](https://camo.githubusercontent.com/42d2fb5d42b916af836aebb484057f4f18c2a07d498d612ecebf9bf54142e6f7/68747470733a2f2f706f7365722e707567782e6f72672f6e6f7469666965722f6e6f7469666965722d62756e646c652f76657273696f6e2e737667)](https://packagist.org/packages/notifier/notifier-bundle)[![Latest Unstable Version](https://camo.githubusercontent.com/d456b3b74e3dcb0da06b47660c9e8ed65a1d4183b02b891e2e31d8b502f75847/68747470733a2f2f706f7365722e707567782e6f72672f6e6f7469666965722f6e6f7469666965722d62756e646c652f762f756e737461626c652e737667)](//packagist.org/packages/notifier/notifier-bundle)[![Total Downloads](https://camo.githubusercontent.com/3c8bb21d1ea2dc1621ff736e76c7fc138e397e5670cacf29aef08b5a74da6b7e/68747470733a2f2f706f7365722e707567782e6f72672f6e6f7469666965722f6e6f7469666965722d62756e646c652f646f776e6c6f6164732e737667)](https://packagist.org/packages/notifier/notifier-bundle)[![Dependency Status](https://camo.githubusercontent.com/cb1835832519316dc31237425703924e95bf5c0f3ddb9b01d5f0a465dc641420/68747470733a2f2f7777772e76657273696f6e6579652e636f6d2f757365722f70726f6a656374732f3534363137313330613233653431663362653030303033622f62616467652e737667)](https://www.versioneye.com/user/projects/54617130a23e41f3be00003b)[![License](https://camo.githubusercontent.com/a432955e0428048dfa3a7c15e13a4a960db315be22c1b640046bd00bb0a4d41b/68747470733a2f2f706f7365722e707567782e6f72672f6e6f7469666965722f6e6f7469666965722d62756e646c652f6c6963656e73652e737667)](https://packagist.org/packages/notifier/notifier-bundle)

Notifier integration for symfony projects.

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

[](#installation)

Installing this bundle can be done through these simple steps:

1. Add the bundle to your project as a composer dependency:

```
// composer.json
{
    // ...
    require: {
        // ...
        "notifier/notifier-bundle": "~1.0"
    }
}
```

2. Update your composer installation:

```
composer update
```

3. Add the bundle to your application kernel:

```
// app/AppKernel.php
public function registerBundles()
{
    // ...
    $bundle = array(
        // ...
        new Notifier\NotifierBundle\NotifierNotifierBundle(),
    );
    // ...

    return $bundles;
}
```

Usage
-----

[](#usage)

**Implement the data provider**

Implement `\Notifier\NotifierBundle\Notifier\RecipientChannelResolverInterface` and register it as a service. Than register that service identifier as the `recipient_channel_resolver`.

**Configure the types**

`config.yml`

```
notifier:
   recipient_channel_resolver: "acme.recipient_channel_resolver"
   types:
       alert:
           channels: [ "acme.mail_channel" ]

```

Make sure the channels all resolve to an existing service defined in the project.

**Send a message**

```
use Notifier\Message\Message;
use Notifier\Recipient\Recipient;
use Notifier\NotifierBundle\Type\Type;

// ...

$message = new Message(new Type('alert'));
$this->get('notifier')->sendMessage($message, array(new Recipient('identifier')));

```

Contributing
------------

[](#contributing)

> All code contributions - including those of people having commit access - must go through a pull request and approved by a core developer before being merged. This is to ensure proper review of all the code.
>
> Fork the project, create a feature branch, and send us a pull request.
>
> To ensure a consistent code base, you should make sure the code follows the [Coding Standards](http://symfony.com/doc/2.0/contributing/code/standards.html)which we borrowed from Symfony. Make sure to check out [php-cs-fixer](https://github.com/fabpot/PHP-CS-Fixer) as this will help you a lot.

If you would like to help, take a look at the [list of issues](http://github.com/Notifier/NotifierBundle/issues).

Requirements
------------

[](#requirements)

PHP 5.3.2 or above

Author and contributors
-----------------------

[](#author-and-contributors)

Dries De Peuter -  -

See also the list of [contributors](https://github.com/Notifier/NotifierBundle/contributors) who participated in this project.

License
-------

[](#license)

NotifierBundle is licensed under the MIT license.

###  Health Score

20

—

LowBetter than 13% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

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/879864?v=4)[Dries De Peuter](/maintainers/NoUseFreak)[@NoUseFreak](https://github.com/NoUseFreak)

---

Top Contributors

[![NoUseFreak](https://avatars.githubusercontent.com/u/879864?v=4)](https://github.com/NoUseFreak "NoUseFreak (14 commits)")

### Embed Badge

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

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

###  Alternatives

[maize-tech/laravel-email-domain-rule

Laravel Email Domain Rule

612.0k](/packages/maize-tech-laravel-email-domain-rule)[sarfraznawaz2005/noty

Laravel package to incorporate noty flash notifications into laravel.

324.5k](/packages/sarfraznawaz2005-noty)

PHPackages © 2026

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