PHPackages                             webexcess/notifications - 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. webexcess/notifications

ActiveTypo3-flow-package[Mail &amp; Notifications](/categories/mail)

webexcess/notifications
=======================

An asynchronous notification system for Neos CMS

0.201506.2(11y ago)49[1 issues](https://github.com/sbruggmann/WebExcess.Notifications/issues)MITPHP

Since Jun 5Pushed 11y ago1 watchersCompare

[ Source](https://github.com/sbruggmann/WebExcess.Notifications)[ Packagist](https://packagist.org/packages/webexcess/notifications)[ RSS](/packages/webexcess-notifications/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (1)Versions (9)Used By (0)

Neos CMS Notifications
======================

[](#neos-cms-notifications)

This plugin provides asynchronous notifications in Neos CMS.

Note: This package is still experimental and not for production.

Quick start
-----------

[](#quick-start)

- Include the Plugin's route definitions to your `Routes.yaml` file

```
-
  name: 'WebExcessNotifications'
  uriPattern: ''
  subRoutes:
    WebExcessNotificationsSubroutes:
      package: WebExcess.Notifications
```

- Add in your Application a notification

```
/**
 * @var \WebExcess\Notifications\Domain\Service\NotificationService
 * @Flow\Inject
 */
protected $notificationService;

public yourAction(){
	$this->notificationService->add('info', 'This is an important information');
}
```

- Add in your Shell-Script a notification

```
./flow notification:add error "Product import faild" --message "Got malformed XML"

```

- Visit the Neos backend and the notification appears

Address Users
-------------

[](#address-users)

`--target "Roles:TYPO3.Neos:Editor,TYPO3.Neos:Administrator"` or `--target "Users:usernamea,usernameb"`

`TYPO3.Neos:Editor\+` means that every user with this role get the notification.

`TYPO3.Neos:Editor\!` means that even if another role has the "+"-suffix, the delivery of the notification ends with the first of these "!"-suffix users.

If there is one "+" or "!" suffix, every other not-suffixed item gets "+" appended.

Important: Escape the characters "+" and "!" if you are in shell!

**Default behavior:**

The first backend user is the one and only that get the notification.

**Role restricted behavior:**

```
./flow notification:add info "New Version of Neos CMS is installed" --target "Roles:TYPO3.Neos:Editor"

```

The first backend user with role "TYPO3.Neos:Editor" is the one and only that get the notification.

**Role restricted behavior - all users:**

```
./flow notification:add warning "The Export-Module has a new operating Concept" --target "Roles:TYPO3.Neos:Editor\+"

```

All backend users with role "TYPO3.Neos:Editor" get the notification.

**Role restricted behavior - limited:**

```
./flow notification:add error "Newsletter worker has failures" --target "Roles:TYPO3.Neos:Editor\+,TYPO3.Neos:Administrator\!"

```

All backend users with role "TYPO3.Neos:Editor" get the notification until one single user with role "TYPO3.Neos:Administrator" get the notification.

TYPO3.Neos:History Integration
------------------------------

[](#typo3neoshistory-integration)

To get this working you have to change the TYPO3\\Neos\\Controller\\Module\\Management\\HistoryController.php

from:

```
$view->setTypoScriptPathPattern('resource://TYPO3.Neos/Private/TypoScript/Backend');
```

to:

```
$view->setTypoScriptPathPatterns(array('resource://TYPO3.Neos/Private/TypoScript/Backend', 'resource://WebExcess.Notifications/Private/TypoScript/History'));
```

and Enable it:

```
WebExcess:
  Notifications:
    addEventLog: TRUE
```

###  Health Score

25

—

LowBetter than 35% of packages

Maintenance15

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

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

Total

3

Last Release

4038d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/bdc5710fe83fa49841c7cb3e78547601637f220833db59d268302803317dcbc2?d=identicon)[webexcess](/maintainers/webexcess)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/webexcess-notifications/health.svg)

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

###  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)
