lisennk/laravel-slack-web-api
Composer 安装命令:
composer require lisennk/laravel-slack-web-api
包简介
Light Laravel wrapper for Slack Web API
README 文档
README
Lightweight Laravel 5 wrapper for the Slack Web API, including a facade and config options.
Please note that this implementation is very lightweight meaning you'll need to do some more work than usual, but in return you get a lot more flexibility. This package doesn't provide methods such as Chat::postMessage(string $message), it just provides one method: SlackApi::execute(string $method, array $parameters).
👍 Reasons to use this package for the Slack API:
- Built-in compliance with the Slack API rate limits
- Lightweight, flexible
- Modern Laravel integration
- Test coverage
- Lots of emoji in the documentation (even cats! 🐈)
🌎 Installation
1) Require the package with Composer
composer require lisennk/laravel-slack-web-api
2) Open config/app.php and add \Lisennk\Laravel\SlackWebApi\Providers\SlackApiServiceProvider::class to the providers[] array
For example:
// ... 'providers' => [ // ... // A whole bunch of providers // ... \Lisennk\Laravel\SlackWebApi\Providers\SlackApiServiceProvider::class ], // ...
3) If you want to use the Facade, add \Lisennk\Laravel\SlackWebApi\Facades\SlackApi::class to the aliases[] array in config/app.php
For example:
// ... 'aliases' => [ // ... // A whole bunch of aliases // ... 'SlackApi' => \Lisennk\Laravel\SlackWebApi\Facades\SlackApi::class ], // ...
4) Publish the config file
php artisan vendor:publish
5) Open config/slack.php and insert your token to make API requests
'token' => 'your-token-here'
🍴 Usage
To make Slack API requests, you need to call the execute method of the SlackApi class and pass the Slack Web API method name and any parameters. For example:
$api->execute('method.name', [ 'parameter_one' => 'some-data', 'parameter_two' => 'some-other-data' // ... ];
This will return a plain PHP array containing the response data from Slack.
####1) Basic example of usage in a Controller:
use \Lisennk\Laravel\SlackWebApi\SlackApi; use \Lisennk\Laravel\SlackWebApi\Exceptions\SlackApiException; // ... public function postMessage(SlackApi $api) { try { $response = $api->execute('users.info', [ 'user' => 'U1234567890' ]); $name = $response['user']['name']; // Do something amazing with data from Slack... } catch (SlackApiException $e) { return 'Error:' . $e->getMessage(); } } // ...
####2) Basic usage with the Facade:
use \Lisennk\Laravel\SlackWebApi\Exceptions\SlackApiException; // ... public function postMessage() { try { $response = SlackApi::execute('users.info', [ 'user' => 'U1234567890' ]); $name = $response['user']['name']; // Do something amazing with data from Slack... } catch (SlackApiException $e) { return 'Error:' . $e->getMessage(); } } // ...
🌺 Contributing
Feel free to create pull requests or issues, and report typos.
📚 Reference
- To use Slack Events API, we recommend the Laravel Slack Events API package
lisennk/laravel-slack-web-api 适用场景与选型建议
lisennk/laravel-slack-web-api 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 17.71k 次下载、GitHub Stars 达 21, 最近一次更新时间为 2016 年 08 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「api」 「laravel」 「slack」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 lisennk/laravel-slack-web-api 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 lisennk/laravel-slack-web-api 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 lisennk/laravel-slack-web-api 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A Highly Opinionated Symfony3/4 Deployer Recipe
This bundle provides integration with the Slack API library, allowing you to interact with the Slack API from within your Symfony projects
A PSR-7 compatible library for making CRUD API endpoints
Wrapper for Slack Web API
Alfabank REST API integration
This is my package support-tickets-notifications
统计信息
- 总下载量: 17.71k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 21
- 点击次数: 16
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-08-16