npo/message-alerting-bundle

a symfony bundle for the ease-of-use of package message-alerting.

1.0 2024-03-14 13:34 UTC

This package is not auto-updated.

Last update: 2024-04-26 12:31:40 UTC


README

message-alerting-bundle contains the bundle that includes message-alerting library and adds the Factories to the container

Getting Started

To use these messages-alerting library add this bundle to your project's composer requirements:

composer require npo/message-alerting-bundle

Then register it in your config/bundles.php

declare(strict_types=1);

return [
    //... more bundles
    NpoMessage\AlertingBundle\MessageAlertingBundle::class => ['all' => true],
];

Build and Test

No building needed, but there's a Dockerfile for development purposes. test by running phpunit.

Contribute

When updating this package run checkup to see if you comply to the codestyle and have enough test coverage

composer run checkup