dev-master
9999999-devA system to send notifications to different handlers
MIT
v1.0
1.0.0.0A system to send notifications to different handlers
MIT
A system to send notifications to different handlers
Send notifications to different configured handlers at once., (*1)
$ composer require bpa/notifications
Create a room to which your messages should be sent:, (*2)
class DeveloperRoom implements RoomInterface { public function getIdentifier() { return 'developer-room'; } public function getName() { return 'Room for developers'; } }
Create a message type:, (*3)
class UrgentDeveloperMessage implements MessageInterface { public function getTitle() { return null; } public function getMessage() { return 'There is an urgent task waiting to be done'; } public function getRoom() { return new DeveloperRoom(); } }
Currently there is only a single handler. But more are to come. I would love to see some contributions for other chat tools like Slack, Hipchat, IRC or others., (*4)
A system to send notifications to different handlers
MIT
A system to send notifications to different handlers
MIT