npo / message-alerting-bundle
a symfony bundle for the ease-of-use of package message-alerting.
1.0
2024-03-14 13:34 UTC
Requires
- php: ^8.3
- npo/message-alerting: ~1.0
- symfony/framework-bundle: ^6.3|^7.0
Requires (Dev)
- dg/bypass-finals: ~v1.6.0
- friendsofphp/php-cs-fixer: ~v3.51.0
- npo/phpunit-extension: ~1.1
- phpstan/phpstan: ~v1.10.60
- phpstan/phpstan-phpunit: ~v1.3.16
- phpunit/phpunit: ~v11.0.4
This package is not auto-updated.
Last update: 2024-11-08 14:51:52 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