├── .gitignore ├── .php_cs ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── UPGRADE-3.0.md ├── composer.json ├── phpunit.xml ├── src ├── ActionConfirmation.php ├── Attachment.php ├── AttachmentAction.php ├── AttachmentField.php ├── Client.php ├── ClientInterface.php ├── ErrorResponseHandler.php ├── Exception │ ├── ActionProhibitedException.php │ ├── ChannelIsArchivedException.php │ ├── ChannelNotFoundException.php │ ├── InvalidPayloadException.php │ ├── RollupErrorException.php │ ├── SlackApiException.php │ └── UserNotFoundException.php ├── Message.php └── MessageInterface.php └── tests ├── .gitkeep ├── AttachmentUnitTest.php ├── ClientFunctionalTest.php ├── ClientUnitTest.php ├── ErrorResponseHandlerUnitTest.php └── MessageUnitTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/.gitignore -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/.php_cs -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADE-3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/UPGRADE-3.0.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/ActionConfirmation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/src/ActionConfirmation.php -------------------------------------------------------------------------------- /src/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/src/Attachment.php -------------------------------------------------------------------------------- /src/AttachmentAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/src/AttachmentAction.php -------------------------------------------------------------------------------- /src/AttachmentField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/src/AttachmentField.php -------------------------------------------------------------------------------- /src/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/src/Client.php -------------------------------------------------------------------------------- /src/ClientInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/src/ClientInterface.php -------------------------------------------------------------------------------- /src/ErrorResponseHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/src/ErrorResponseHandler.php -------------------------------------------------------------------------------- /src/Exception/ActionProhibitedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/src/Exception/ActionProhibitedException.php -------------------------------------------------------------------------------- /src/Exception/ChannelIsArchivedException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/src/Exception/ChannelIsArchivedException.php -------------------------------------------------------------------------------- /src/Exception/ChannelNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/src/Exception/ChannelNotFoundException.php -------------------------------------------------------------------------------- /src/Exception/InvalidPayloadException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/src/Exception/InvalidPayloadException.php -------------------------------------------------------------------------------- /src/Exception/RollupErrorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/src/Exception/RollupErrorException.php -------------------------------------------------------------------------------- /src/Exception/SlackApiException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/src/Exception/SlackApiException.php -------------------------------------------------------------------------------- /src/Exception/UserNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/src/Exception/UserNotFoundException.php -------------------------------------------------------------------------------- /src/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/src/Message.php -------------------------------------------------------------------------------- /src/MessageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/src/MessageInterface.php -------------------------------------------------------------------------------- /tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/AttachmentUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/tests/AttachmentUnitTest.php -------------------------------------------------------------------------------- /tests/ClientFunctionalTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/tests/ClientFunctionalTest.php -------------------------------------------------------------------------------- /tests/ClientUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/tests/ClientUnitTest.php -------------------------------------------------------------------------------- /tests/ErrorResponseHandlerUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/tests/ErrorResponseHandlerUnitTest.php -------------------------------------------------------------------------------- /tests/MessageUnitTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nexylan/slack/HEAD/tests/MessageUnitTest.php --------------------------------------------------------------------------------