rodchyn / notifier
DBus and Growl Sismo notifier port for custom notifications
dev-master
2012-08-10 09:26 UTC
Requires
- symfony/process: dev-master
This package is auto-updated.
Last update: 2024-10-29 04:41:50 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