Skip to content

Releases: andreshg112/laravel-auditing-notifications

Support Laravel 7

25 Sep 02:19
Compare
Choose a tag to compare
1.4.0

Support Laravel 7

Queueable notification

11 Apr 21:44
e8c2287
Compare
Choose a tag to compare

Now it is possible to queue the default SNS notification instead of sending it immediately. Just add this to the config/audit.php file:

return [
    // ...

    // andreshg112/laravel-auditing-notifications

    'notification-driver' => [
        'notifications' => [
            Andreshg112\LaravelAuditingNotifications\AuditSnsQueue::class,
        ],

        // Required if your using Andreshg112\LaravelAuditingNotifications\AuditSns or Andreshg112\LaravelAuditingNotifications\AuditSnsQueue.
        'sns' => [
            'topic_arn' => 'arn:aws:sns:us-east-1:xxxxxxxxxxxx:auditing-notifications',
        ],
    ],
];

Initial release.

03 Apr 00:48
Compare
Choose a tag to compare

It can send notifications with audit data through AWS SNS. This is customizable.