定制 piestar/slack-laravel 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

piestar/slack-laravel

最新稳定版本:2.0.1

Composer 安装命令:

composer require piestar/slack-laravel

包简介

Laravel integration for the alek13/slack package, including a facade and service provider.

README 文档

README

This package allows you to use Slack for PHP easily and elegantly in your Laravel app. Read the instructions below to get setup, and then head on over to Slack for PHP for usage details.

Installation

You can install the package using the Composer package manager. You can install it by running this command in your project root:

composer require piestar/slack-laravel

Then create an incoming webhook for each Slack team you'd like to send messages to. You'll need the webhook URL(s) in order to configure this package.

Add the Piestar\Slack\Laravel\ServiceProvider provider to the providers array in config/app.php:

'providers' => [
  Piestar\Slack\Laravel\SlackServiceProvider::class,
],

Then add the facade to your aliases array:

'aliases' => [
  ...
  'Slack' => Piestar\Slack\Laravel\Facade::class,
],

Finally, publish the config file with php artisan vendor:publish. You'll find it at config/slack.php.

Configuration

The config file comes with defaults and placeholders. Configure at least one team and any defaults you'd like to change.

Usage

The Slack facade is now your interface to the library. Any method you see being called an instance of Maknz\Slack\Client is available on the Slack facade for easy use.

// Send a message to the default channel
\Slack::send('Hello world!');

// Send a message to a different channel
\Slack::to('#accounting')->send('Are we rich yet?');

// Send a private message
\Slack::to('@username')->send('psst!');

Now head on over to Slack for PHP for more examples, including attachments and message buttons.

统计信息

  • 总下载量: 5.53k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 112
  • 开发语言: PHP

其他信息

  • 授权协议: BSD-2-Clause
  • 更新时间: 2018-08-08