Download the PHP package bootdesk/chat-sdk-adapter-slack without Composer
On this page you can find all versions of the php package bootdesk/chat-sdk-adapter-slack. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download bootdesk/chat-sdk-adapter-slack
More information about bootdesk/chat-sdk-adapter-slack
Files in bootdesk/chat-sdk-adapter-slack
Package chat-sdk-adapter-slack
Short Description Slack adapter for bootdesk/chat-sdk-core
License MIT
Informations about the package chat-sdk-adapter-slack
bootdesk/chat-sdk-adapter-slack
Slack adapter for the laravel-bootdesk multi-platform messaging framework.
Install
Requires a PSR-18 HTTP client (guzzlehttp/guzzle, symfony/http-client, etc.) and a PSR-17 factory (nyholm/psr7 bundled).
Configuration
| Variable | Description | Example |
|---|---|---|
bot_token |
Slack Bot OAuth Token | xoxb-1234-abcd-... |
http_client |
PSR-18 HTTP client instance | new GuzzleHttp\Client |
signing_secret |
Slack App Signing Secret | 8f742231b10e... |
Laravel
The ChatServiceProvider auto-binds Psr\Http\Client\ClientInterface to GuzzleHttp\Client. Add to config/chat.php:
Quick Example
Thread ID Format
| Format | Description |
|---|---|
slack:{channelId} |
Top-level channel message |
slack:{channelId}:{threadTs} |
Reply within a thread |
Webhook
Slack sends Event API payloads to your endpoint. Verify requests using the signing secret with the X-Slack-Signature header (HMAC-SHA256).
Feature Matrix
| Feature | Supported |
|---|---|
| Post messages | ✓ |
| Edit messages | ✓ |
| Delete messages | ✓ |
| Reactions | ✓ |
| Slash commands | ✓ |
| Typing indicator | ✓ |
| Fetch messages | ✓ |
| Fetch thread info | ✓ |
| Fetch channel info | ✓ |
| Get user | ✓ |
| Open DM | ✗ |
| Stream | ✓ |
Notes
Supports Socket Mode, interactive messages, slash commands, and app mentions.
Documentationn
Full API documentation: https://bootdesk.github.io/chat-sdk
License
MIT
All versions of chat-sdk-adapter-slack with dependencies
bootdesk/chat-sdk-core Version 0.4.45
ext-json Version *
psr/http-client Version ^1.0
psr/http-factory Version ^1.0