Download the PHP package olexandrmazur/api-slack-php without Composer
On this page you can find all versions of the php package olexandrmazur/api-slack-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download olexandrmazur/api-slack-php
More information about olexandrmazur/api-slack-php
Files in olexandrmazur/api-slack-php
Package api-slack-php
Short Description Easy in use, lightweight library for interaction with Slack API.
License Apache-2.0
Informations about the package api-slack-php
PHP Slack
Easy in use, lightweight library for interaction with Slack API.
An original repository - https://github.com/Frlnc/php-slack, but seems it's abandoned.
Install
Provides
-
Frlnc\Slack\Contracts
A small set of contracts to allow for the consumption of the Slack API. Interactor, Response and ResponseFactory.
- Interactor is in charge of providing the Http GET/POST methods.
- Response is in charge of providing a simple Http response wrapper for holding the body, headers and status code.
- ResponseFactory is in charge of providing a factory to instantiate and build the Response.
To use this package, it's simple. Though please note that this implementation is very lightweight meaning you'll need
to do some more work than usual. This package doesn't provide methods such as Chat::postMessage(string message)
, it
literally provides one method (Commander::execute(string command, array parameters = [])
).
Here is a very simple example of using this package:
Note that Commander will automatically format most inputs to Slack's requirements but attachments are not supported -
you will need to manually call $text = Commander::format($text)
to convert it.
TODO
- [x] Add all available Slack API methods
- [ ] Fix some known bugs (allow overwriting command "format", fix files.upload with file name containing "@" symbol)
- [ ] Add handling rate limits
- [ ] Check mandatory parameters presented before interaction with API
- [ ] Add unit tests
- [ ] Add code sniffer
- [ ] Add Psalm (or else static analysis tool)
- [ ] Provide github actions
- [ ] Add more explanations about tokens and other Slack-related things to readme
- [ ] Add more code examples to readme (or /doc folder?)
- [ ] Consider adding something like Laravel facades
- [ ] Consider reworking response format