Skip to content
This repository has been archived by the owner on Oct 22, 2019. It is now read-only.

Astrotomic/notifynder-sender-redis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Notifynder 4 Redis Sender - Laravel 5

GitHub release GitHub license GitHub issues Total Downloads

StyleCI

Code Climate

Slack Team Slack join

Documentation: Notifynder Docu


Installation

Step 1

composer require astrotomic/notifynder-sender-redis

Step 2

Add the following string to config/app.php

Providers array:

Astrotomic\Notifynder\NotifynderSenderRedisServiceProvider::class,

Step 3

Add the following array to config/notifynder.php

'senders' => [
    'redis' => [
        'channel' => 'notifynder.{type}.{id}.{category}',
        'store' => false, // wether you want to also store the notifications in database
    ],
],