maartenpaauw / php-slack-constants
PHP enums for Slack API events
Fund package maintenance!
maartenpaauw
Requires
- php: ^8.4
Requires (Dev)
- laravel/pint: ^1.0
- phpunit/phpunit: ^12.3
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.