You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JoliNotif is a cross-platform PHP library to display desktop notifications.
It works on Linux, Windows or macOS.
Requires PHP >= 8.1 (support for PHP 5 was available in version 1.x, for PHP 7.0
and 7.1 in version < 2.1.0, for PHP 7.2 and 7.3 in version < 2.4.0, for PHP < 8.0 in version 2.6.0).
Note
This library can not be used in a web context (FPM or equivalent). Use
it in your CLI scripts or in a CRON
Installation
Use Composer to install JoliNotif in your project:
composer require "jolicode/jolinotif"
Usage
include__DIR__.'/vendor/autoload.php';
useJoli\JoliNotif\Notification;
useJoli\JoliNotif\DefaultNotifier;
$notifier = newDefaultNotifier();
// Create your notification$notification =
(newNotification())
->setTitle('Notification title')
->setBody('This is the body of your notification')
->setIcon(__DIR__.'/path/to/your/icon.png')
->addOption('subtitle', 'This is a subtitle') // Only works on macOS (AppleScriptDriver)
->addOption('sound', 'Frog') // Only works on macOS (AppleScriptDriver & TerminalNotifierDriver)
;
// Send it$notifier->send($notification);