- HipChat
- Slack
- Hall
- Jaconda
- Sqwiggle
- Gitter
- FlowDock
- Campfire
- Grove
- Telegram
- Twillo (SMS)
- IRC
Begin by installing this package through Composer. Edit your project's composer.json
file to require nathanmac/instant-messenger
.
"require": {
"nathanmac/instant-messenger": "1.*"
}
Next, update Composer from the Terminal:
composer update
If you are a Laravel user, then there is a service provider that you can make use of to automatically prepare the bindings and such.
// app/config/app.php
'providers' => [
'...',
'Nathanmac\InstantMessenger\MessengerServiceProvider'
];
After installing, you can publish the package configuration file into your application by running the following command:
php artisan vendor:publish nathanmac/instant-messenger
After installing and adding the service provider to the configuration file, you now have access to the messenger:send
command which allows you to send a simple notification from the command line, the following demonstrates the sending
of a simple message.
$ php artisan messenger:send "This is a test message to be sent using the configured service." --from "Auto Notifier"
<?php
require 'vendor/autoload.php';
use Nathanmac\InstantMessenger\Messenger;
use Nathanmac\InstantMessenger\Services\HipChatService;
use Nathanmac\InstantMessenger\Services\SlackService;
use Nathanmac\InstantMessenger\Services\HallService;
use Nathanmac\InstantMessenger\Services\JacondaService;
use Nathanmac\InstantMessenger\Services\SqwiggleService;
use Nathanmac\InstantMessenger\Services\GitterService;
use Nathanmac\InstantMessenger\Services\FlowDockService;
use Nathanmac\InstantMessenger\Services\CampFireService;
use Nathanmac\InstantMessenger\Services\GroveService;
use Nathanmac\InstantMessenger\Services\TelegramService;
use Nathanmac\InstantMessenger\Services\TwilioService;
// Twilio
$transport = new TwilioService('TWILIO ACCOUNT SID', 'TWILIO AUTH TOKEN', 'FROM PHONE', 'TO PHONE');
$messenger = new Messenger($transport);
$messenger->send(function($message) {
$message->body('Hello this is a simple notification.');
});
// Telegram
$transport = new TelegramService('TELEGRAM TOKEN', 'CHAT ID');
$messenger = new Messenger($transport);
$messenger->send(function($message) {
$message->body('Hello this is a simple notification.');
});
// Grove
$transport = new GroveService('GROVE CHANNEL TOKEN');
$messenger = new Messenger($transport);
$messenger->send(function($message) {
$message->from('Bot');
$message->body('Hello this is a simple notification.');
});
// CampFire
$transport = new CampFireService('CAMPFIRE SUBDOMAIN', 'CAMPFIRE API TOKEN', 'CAMPFIRE ROOM ID');
$messenger = new Messenger($transport);
$messenger->send(function($message) {
$message->body('Hello this is a simple notification.');
});
// FlowDock
$transport = new FlowDockService('FLOW API TOKEN', ['any', 'tags', 'for', 'the', 'message']);
$messenger = new Messenger($transport);
$messenger->send(function($message) {
$message->body('Hello this is a simple notification.');
$message->from('Bot');
$message->tags('more', 'tags', 'as', 'required');
$message->tag('OMG');
});
// Gitter
$transport = new GitterService('GITTER API TOKEN');
$messenger = new Messenger($transport);
$messenger->send(function($message) {
$message->body('Hello this is a simple notification.');
});
// Hipchat
$transport = new HipChatService('HIPCHAT API TOKEN', 123456);
$messenger = new Messenger($transport);
$messenger->send(function($message) {
$message->body('Hello this is a simple notification.');
});
// Sqwiggle
$transport = new SqwiggleService('SWIGGLE_TOKEN', 12345);
$messenger = new Messenger($transport);
$messenger->send(function($message) {
$message->body('Hello this is a simple notification.');
});
// Slack
$transport = new SlackService('WEBHOOK TOKEN', '#channel');
$messenger = new Messenger($transport);
$messenger->send(function($message) {
$message->body('Hello this is a simple notification.');
$message->from('John Smith', 'john.smith@example.com');
});
// Hall
$transport = new HallService('API TOKEN');
$messenger = new Messenger($transport);
$messenger->send(function($message) {
$message->body('Hello this is a simple notification.');
$message->from('John Smith');
});
// Jaconda
$transport = new JacondaService('account', 'ROOM TOKEN', 'room');
$messenger = new Messenger($transport);
$messenger->send(function($message) {
$message->body('Hello this is a simple notification.');
$message->from('John Smith');
});