2017 © Pedro Peláez
 

yii2-extension yii2-slack

Yii2 slack client based library

image

yiier/yii2-slack

Yii2 slack client based library

  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 19 % Grown

The README.md

Yii2 Slack integration

Designed to send messages to slack messenger, (*1)

How it looks, (*2)

Installation

php composer.phar require --prefer-dist yiier/yii2-slack "*"

Also, you should configure incoming webhook inside your Slack team., (*3)

Usage

Configure component:, (*4)

...
    'components' => [
        'slack' => [
            'httpClient' => ['class' => 'Curl\Curl'],
            'class' => 'yiier\slack\Client',
            'url' => '<slack incoming webhook url here>',
            'username' => 'My awesome application',
        ],
    ],
...

Now you can send messages right into slack channel via next command:, (*5)

Yii::$app->slack->send('Hello', ':thumbs_up:', [
    [
        // attachment object
        'text' => 'text of attachment',
        'pretext' => 'pretext here',
    ],
]);

To learn more about attachments, read Slack documentation, (*6)

Also you can use slack as a log target:, (*7)

...
'components' => [
    'log' => [
        'traceLevel' => 3,
        'targets' => [
            [
                'class' => 'yiier\slack\LogTarget',
                'categories' => ['commandBus'],
                'exportInterval' => 1, // Send logs on every message
                'logVars' => [],
            ],
        ],
    ],
],
...

or, (*8)

...
'components' => [
    'log' => [
        'traceLevel' => 3,
        [
            'class' => 'yiier\slack\LogTarget',
            'levels' => ['error'],
            'enabled' => true,
            'emoji' => ':beetle:',
            'logMessage' => '错误信息',
            'categories' => [
                'yii\db\*',
                'yii\web\HttpException:*',
                'error',
            ],
            'except' => [
                'yii\web\HttpException:404', // 除了404错误
            ],
            'exportInterval' => 1, // Send logs on every message
            'logVars' => [],
        ],
    ],
],
...

Credits

Understeam/yii2-slack, (*9)

The Versions

22/07 2016

dev-master

9999999-dev

Yii2 slack client based library

  Sources   Download

GPL-3.0

The Requires

 

extension yii2 slack

22/07 2016

v1.1.0

1.1.0.0

Yii2 slack client based library

  Sources   Download

GPL-3.0

The Requires

 

extension yii2 slack

01/06 2016

v1.0

1.0.0.0

Yii2 slack client based on GuzzleHttp library

  Sources   Download

GPL-3.0

The Requires

 

extension yii2 slack