polterix / slack-notifier

A simple php wrapper for slack notification (incomming webhook)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Slack notifier

Build Status Code Coverage Scrutinizer Code Quality SensioLabsInsight

Installation

composer require slack-notifier

Usage

Simple

require __DIR__ . '/vendor/autoload.php';

$client = new Slack\Client('your_team', 'your_token');
$slack = new Slack\Notifier($client);

$message = new Slack\Message\Message('Hello world');

$message->setChannel('#test')
    ->setIconEmoji(':ghost:')
    ->setUsername('slack-php');

$slack->notify($message);

With attachments

require __DIR__ . '/vendor/autoload.php';

$client = new Slack\Client('your_team', 'your_token');
$slack = new Slack\Notifier($client);

$message = new Slack\Message\Message('Hello world');
$attachment = new Slack\Message\MessageAttachment();
$field = new Slack\Message\MessageField();
$field
    ->setTitle('foo')
    ->setValue('bar');

$attachment->addField($field);
$message->addAttachment($attachment);

$message->setChannel('#test')
    ->setIconEmoji(':ghost:')
    ->setUsername('slack-php');

$slack->notify($message);

About

A simple php wrapper for slack notification (incomming webhook)

License:MIT License