laravel-backup-notifications-rocket-chat maintained by innovareti
Description
Laravel Backup notification channel for Rocket.Chat
Author
Last update
2021/03/11 20:56
(dev-master)
License
Downloads
379
laravel-backup-notifications-rocket-chat
Usage
$ composer require innovareti/laravel-backup-notifications-rocket-chat
Add this to your config/backup.php config file:
'notifications' => [
'notifications' => [
\NotificationsRocketChat\Notifications\BackupHasFailed::class => [RocketChatWebhookChannel::class, ... (other providers)],
\NotificationsRocketChat\Notifications\UnhealthyBackupWasFound::class => [RocketChatWebhookChannel::class, ... (other providers)],
\NotificationsRocketChat\Notifications\CleanupHasFailed::class => [RocketChatWebhookChannel::class, ... (other providers)],
\NotificationsRocketChat\Notifications\BackupWasSuccessful::class => [RocketChatWebhookChannel::class, ... (other providers)],
\NotificationsRocketChat\Notifications\HealthyBackupWasFound::class => [RocketChatWebhookChannel::class, ... (other providers)],
\NotificationsRocketChat\Notifications\CleanupWasSuccessful::class => [RocketChatWebhookChannel::class, ... (other providers)],
],
...