An open API service indexing awesome lists of open source software.

https://github.com/raph6/slack-php

php easy slack alerts
https://github.com/raph6/slack-php

alerts notifications php slack

Last synced: 23 days ago
JSON representation

php easy slack alerts

Awesome Lists containing this project

README

          

```
composer require raph6/slack-alerts
```

```php

use raph6\SlackAlerts\SlackAlerts;

// ---

$slack1 = new SlackAlerts('https://hooks.slack.com/services/xxxxxx/yyyyyyy/zzzzzz');
$slack1->setText('test');
$slack1->send();

// ---

$slack2 = new SlackAlerts([
'default' => 'https://hooks.slack.com/services/xxxxxx/yyyyyy/zzzzzz',
'channel2' => 'https://hooks.slack.com/services/yyyyyy/xxxxxx/ssssss'
]);
$slack2->setText('test');
$slack2->send('channel2');
```