Send notifications on Windows7/10 / macOS / Linux Desktop with php.
composer require xiebruce/php-notification
require 'vendor/autoload.php';
use Notification\Notification;
// subtitle only supported on macOS.
$config = [
'success' => [
'title' => 'Upload succeed',
'subtitle' => 'Upload succeed',
'message' => 'You can paste url directly.',
],
'failed' => [
'title' => 'Upload failed',
'subtitle' => 'Upload failed',
'message' => 'Sorry, Upload failed.',
],
'no_image' => [
'title' => 'No image',
'subtitle' => 'No image was dected on the clipboard',
'message' => 'No image was detected on the clipboard, Please take a screenshot first.',
],
];
$notify = new Notification($config);
$notify->send('success');