Closed
Description
Description
jolicode/JoliNotif is a well-known package that provides the ability to display desktop notifications and it's a cross-platform (Windows, Linux, and MacOS). I think adding an integration for it with the Notifier component would be useful specially for console apps/tools built with Symfony that need to display notifications continuously on the machine it's running on.
My thoughts for the implementation is that another channel should be created (e.g. DesktopChannel
), and then a bridge for jolicode/JoliNotif
should be added to that channel.
I'll be happy to work on a PR for this if the idea is accepted
Example
$notification = new Notification('Sample Text', ['desktop/jolinotif']);
$notifier->send($notification);