PHPackages                             grossum/notification-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. grossum/notification-bundle

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

grossum/notification-bundle
===========================

Bundle to work with GrossumNotificationServer

1.0.1(9y ago)48091MITPHPPHP &gt;=7.0

Since Nov 29Pushed 9y ago8 watchersCompare

[ Source](https://github.com/GrossumUA/GrossumNotificationBundle)[ Packagist](https://packagist.org/packages/grossum/notification-bundle)[ RSS](/packages/grossum-notification-bundle/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (2)Dependencies (5)Versions (3)Used By (0)

NotificationBundle to work with GrossumNotificationServer

Instalation:

```
composer require grossum/notification-bundle

```

Register the bundle:

```
    // app/AppKernel.php

    public function registerBundles()
    {
        $bundles = array(
            new GrossumUA\NotificationBundle\NotificationBundle(),
            new OldSound\RabbitMqBundle\OldSoundRabbitMqBundle(),
        );
    }
```

Add config:

```
#app/config/config.yml

    old_sound_rabbit_mq:
        connections:
            default:
                host:     %notification_service_ip%
                port:     %notification_service_port%
                user:     %notification_service_user%
                password: %notification_service_pass%
                vhost:    %notification_service_vhost%
                lazy:     true
                connection_timeout: 3
                read_write_timeout: 3
                keepalive: false
                heartbeat: 0
        producers:
            send_sms:
                connection:       default
                exchange_options: {name: 'send-sms', type: direct}
            send_email:
                connection:       default
                exchange_options: {name: 'send-email', type: direct}
            send_push:
                connection:       default
                exchange_options: {name: 'send-push', type: direct}
            send_web:
                connection:       default
                exchange_options: {name: 'send-web', type: direct}
```

Add paramters:

```
#app/config/paramters.yml

parameters:
    notification_service_ip: 127.0.0.1
    notification_service_port: 5642
    notification_service_user: user
    notification_service_pass: pass
    notification_service_vhost: vhost
```

Available notifications:

1. `EmailNotification`
2. `EntityDataDeleteNotification`
3. `EntityDataUpdateNotification`
4. `MessageNotification`
5. `PushNotification`
6. `SmsNotification`

Example usage:

```
    $userNotification = new MessageNotification();

    $userNotification
        ->setType(NotificationInterface::SOCKET_NOTIFICATION_TYPE_WEB_NOTIFICATION)
        ->setContent('You have created task to demo NotificationBundle')
        ->setMediaUrl('https://pbs.twimg.com/profile_images/564783819580903424/2aQazOP3.png')
        ->setTitle('You have created task to demo NotificationBundle')
        ->setCreatedAt(new \DateTime())
        ->setRecipientHashes(['sds12']);

    $this->disptacher->dispatch(
        'grossum.notification.event.send_notification',
        new NotificationCreatedEvent($userNotification)
    );
```

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 66.7% 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 ~15 days

Total

2

Last Release

3438d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/56c8752cd3f8e6e3b9a2a3d72f6e4a7a1e79d52d06007b224bdca405d6502518?d=identicon)[WhiteEagle88](/maintainers/WhiteEagle88)

---

Top Contributors

[![trixmc](https://avatars.githubusercontent.com/u/722023?v=4)](https://github.com/trixmc "trixmc (2 commits)")[![myrkox](https://avatars.githubusercontent.com/u/6040258?v=4)](https://github.com/myrkox "myrkox (1 commits)")

---

Tags

grossumnotification bundle

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

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

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

###  Alternatives

[bentools/webpush-bundle

Send push notifications through Web Push Protocol to your Symfony users.

71274.3k](/packages/bentools-webpush-bundle)[mcfedr/awspushbundle

A set of services to simplify using Aws to send push notifications

40378.6k1](/packages/mcfedr-awspushbundle)

PHPackages © 2026

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