PHPackages                             artox-lab/clarc-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. artox-lab/clarc-notification-bundle

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

artox-lab/clarc-notification-bundle
===================================

Notification adapter for Artox Lab CLARC bundle

1.2.0(3y ago)019.9kMITPHPPHP &gt;=7.3

Since Feb 12Pushed 3y ago2 watchersCompare

[ Source](https://github.com/artox-lab/clarc-notification-bundle)[ Packagist](https://packagist.org/packages/artox-lab/clarc-notification-bundle)[ RSS](/packages/artox-lab-clarc-notification-bundle/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependencies (3)Versions (4)Used By (0)

Clean Architecture notification bundle
======================================

[](#clean-architecture-notification-bundle)

Installation
============

[](#installation)

Applications that use Symfony Flex
----------------------------------

[](#applications-that-use-symfony-flex)

Open a command console, enter your project directory and execute:

```
$ composer require artox-lab/clarc-notification-bundle
```

Applications that don't use Symfony Flex
----------------------------------------

[](#applications-that-dont-use-symfony-flex)

### 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 artox-lab/clarc-notification-bundle
```

This command requires you to have Composer installed globally, as explained in the [installation chapter](https://getcomposer.org/doc/00-intro.md)of the Composer documentation.

### 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 `config/bundles.php` file of your project:

```
// config/bundles.php

return [
    // ...
    ArtoxLab\Bundle\ClarcNotificationBundle\ArtoxLabClarcNotificationBundle::class => ['all' => true],
];
```

Usage
=====

[](#usage)

You need to implement in your application:

- [Notification](example/Entities/Notification)
- [Notification presenter](example/Interfaces/Notification/Presenter)
- [Transport](example/Interfaces/Notification/Transport)

```
use App\Entities\Notification\ExampleNotification;
use ArtoxLab\Bundle\ClarcNotificationBundle\Notification\Entities\Notifier\NotifierInterface;
use ArtoxLab\Bundle\ClarcNotificationBundle\Notification\Entities\Recipient\EmailRecipient;
use ArtoxLab\Bundle\ClarcNotificationBundle\Notification\Entities\Recipient\SmsRecipient;

class Example
{

    /**
    * Notifier
    *
    * @var NotifierInterface
    */
    private $notifier;

    /**
    * Example constructor.
    *
    * @param NotifierInterface $notifier Notifier
    */
    public function __construct(NotifierInterface $notifier)
    {
        $this->notifier = $notifier;
    }

    /**
    * Notify example
    *
    * @return void
    */
    public function notify(): void
    {
        $notification   = new ExampleNotification('test');
        $smsRecipient   = new SmsRecipient('+123123123');
        $emailRecipient = new EmailRecipient('test@example.com');

        $this->notifier->notify($notification, $smsRecipient, $emailRecipient);
    }

}
```

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity50

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

Total

3

Last Release

1342d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/7871765?v=4)[Artur Turchin](/maintainers/steepdevs)[@steepdevs](https://github.com/steepdevs)

---

Top Contributors

[![Svarok](https://avatars.githubusercontent.com/u/7721869?v=4)](https://github.com/Svarok "Svarok (5 commits)")

### Embed Badge

![Health badge](/badges/artox-lab-clarc-notification-bundle/health.svg)

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

###  Alternatives

[rcsofttech/audit-trail-bundle

Enterprise-grade, high-performance Symfony audit trail bundle. Automatically track Doctrine entity changes with split-phase architecture, multiple transports (HTTP, Queue, Doctrine), and sensitive data masking.

1189.8k](/packages/rcsofttech-audit-trail-bundle)[kimai/kimai

Kimai - Time Tracking

4.8k9.0k1](/packages/kimai-kimai)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

585.6M574](/packages/shopware-core)[2lenet/crudit-bundle

The easy like Crud'it Bundle.

1616.4k14](/packages/2lenet-crudit-bundle)[open-dxp/opendxp

Content &amp; Product Management Framework (CMS/PIM)

9421.6k61](/packages/open-dxp-opendxp)[symfony/ux-toolkit

A tool to easily create a design system in your Symfony app with customizable, well-crafted Twig components

16126.1k1](/packages/symfony-ux-toolkit)

PHPackages © 2026

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