rodchyn/notifier

DBus and Growl Sismo notifier port for custom notifications

dev-master 2012-08-10 09:26 UTC

This package is auto-updated.

Last update: 2024-03-29 03:14:45 UTC


README

Notifier ported from Sismo to be able to use it in own projects

To install add it ower composer

composer require rodchyn/notifier

And simply

<?php

require_once 'vendor/autoload.php';

$notifier = new \Rodchyn\Notifier\DBusNotifier();
$notifier->notify('Title', 'Notification text');

Thanks to Fabien Potensier