maartenpaauw/php-slack-constants
最新稳定版本:1.1.0
Composer 安装命令:
composer require maartenpaauw/php-slack-constants
包简介
PHP enums for Slack API events
README 文档
README
This package provides a PHP string-backed enum for the Slack API events with full support for the Events API and RTM API. The package helps you maintain consistency by preventing typos and provides context about each event, such as whether it's supported by certain APIs.
Support Me
You can support me by buying Model States for Filament.
Installation
You can install the package via composer:
composer require maartenpaauw/php-slack-constants
Usage
Events
The Events class provides a strongly typed way to work with Slack API events while providing context about API support.
use Maartenpaauw\Slack\Constants\Events; Events::AppMention->value; // app_mention Events::AppMention->supportsEventsApi(); // true Events::AppMention->supportsRtmApi(); // false
Scopes
The Scopes class provides a strongly typed way to work with Slack API token scopes that define permissions needed for
API calls.
use Maartenpaauw\Slack\Constants\Scopes; Scopes::BookmarksRead->value; // bookmarks:read Scopes::BookmarksRead->supportsApplicationLevelTokens(); // false Scopes::BookmarksRead->supportsBotTokens(); // true Scopes::BookmarksRead->supportsConfigurationTokens(); // false Scopes::BookmarksRead->supportsUserTokens(); // true
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 97
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-08-03