innovareti / laravel-backup-notifications-rocket-chat
Laravel Backup notification channel for Rocket.Chat
Installs: 128
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
pkg:composer/innovareti/laravel-backup-notifications-rocket-chat
Requires
- php: >=7.2
- laravel-notification-channels/rocket-chat: ^0.3.0
Requires (Dev)
This package is auto-updated.
Last update: 2025-09-12 05:32:37 UTC
README
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)], ], ...