PHPackages                             creavo/notify-task-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. creavo/notify-task-bundle

AbandonedSymfony-bundle

creavo/notify-task-bundle
=========================

A bundle to manage tasks and notifications

0.3.11(2y ago)03.2kMITPHPPHP &gt;5.5.9

Since Sep 29Pushed 2y ago1 watchersCompare

[ Source](https://github.com/creavo/notify-task-bundle)[ Packagist](https://packagist.org/packages/creavo/notify-task-bundle)[ RSS](/packages/creavo-notify-task-bundle/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (10)DependenciesVersions (27)Used By (0)

CREAVO TaskNotifyBundle
=======================

[](#creavo-tasknotifybundle)

[![SensioLabsInsight](https://camo.githubusercontent.com/6c35f27dd9dcba3d5133341048a8218c17ad723d9b02c5e660a2e5186fb8cc5a/68747470733a2f2f696e73696768742e73656e73696f6c6162732e636f6d2f70726f6a656374732f33383337663162362d313330382d346236332d396236382d3031653934353866613362662f6d696e692e706e67)](https://insight.sensiolabs.com/projects/3837f1b6-1308-4b63-9b68-01e9458fa3bf)[![Packagist](https://camo.githubusercontent.com/80326cf60b1a46ea7c13942a92b7dcf3a74c47269faf62ef8c02095eab86d57e/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f63726561766f2f6e6f746966792d7461736b2d62756e646c652e737667)](https://packagist.org/packages/creavo/notify-task-bundle)

### Installation

[](#installation)

```
composer require creavo/notify-task-bundle

```

Add the bundle to your `app/AppKernel.php` with

```
class AppKernel extends Kernel
{
    public function registerBundles()
    {
        $bundles = [
            [...],
            new Creavo\NotifyTaskBundle\CreavoNotifyTaskBundle(),
        ];

        return $bundles;
    }

    [...]
}

```

register routing in `routing.yml`:

```
notify_task:
    resource: '@CreavoNotifyTaskBundle/Resources/config/routing.xml'
    prefix: /task-notify

```

Update the doctrine-schema - use

```
php bin/console doctrine:schema:update

```

or do a migration:

```
php bin/console doctrine:migration:diff
php bin/console doctrine:migration:migrate

```

### configuration

[](#configuration)

add to your `config.yml` and adjust to your wishes:

```
creavo_notify_task:
    send_notification_immediately: true
    pushover_enabled: false
    pushover_api_token: YOUR_PUSHOVER_APP_TOKEN
    email_enabled: false
    email_from: symfony@localhost
    email_subject: new notification

```

### usage

[](#usage)

create notification:

```
// create notification
$notification=$this->get('creavo_notify_task.notification')->create($user, 'this is the message', 'optional title', $relatedEntity);

// maybe modify notification further
$notification->setLinkTitle('Test');

// save it
$this->get('creavo_notify_task.notification')->save($nofitication);

// you can also save it with $em directly, but this will not trigger pushover or email-notification
$em->persist($notification);
$em->flush();

```

todo
----

[](#todo)

- create only one unread notification - system must check, if it already exists and maybe reject the second notification

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity16

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

Recently: every ~3 days

Total

26

Last Release

743d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8a1a956eadfa9ada708a28391a0a4fb58b360aa4e10723d4c7c65e2c734e80fd?d=identicon)[cklm](/maintainers/cklm)

---

Top Contributors

[![cklm](https://avatars.githubusercontent.com/u/466021?v=4)](https://github.com/cklm "cklm (49 commits)")

---

Tags

phpsymfony-bundlesymfony3tasks notify symfony bundle

### Embed Badge

![Health badge](/badges/creavo-notify-task-bundle/health.svg)

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

PHPackages © 2026

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