Skip to content

Commit

Permalink
Fix for PHP 7 and prepare for v0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
sagebind committed Sep 21, 2016
1 parent 0ea0763 commit b9f4fd6
Show file tree
Hide file tree
Showing 3 changed files with 775 additions and 563 deletions.
24 changes: 17 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org).

## [0.2.5] - 2016-09-21
### Added
- You can now check if a `RealTimeClient` is currently connected with a `isConnected()` method.

### Fixed
- Update dependencies to PHP 7 compatible versions.
- Channels are no longer missing when joined.
- WebSocket errors are now logged to stderr instead of being thrown away.

## [0.2.4] - 2016-05-28
### Added
- Get a user's profile images using `getProfileImage[SIZE]()` methods for the various image sizes.
Expand Down Expand Up @@ -64,10 +73,11 @@ This project adheres to [Semantic Versioning](http://semver.org).
- Ability to send messages to any open channel, group or DM, either with the web API or with the RTM API.


[unreleased]: https://github.com/coderstephen/slack-client/compare/v0.2.4...HEAD
[0.2.4]: https://github.com/coderstephen/slack-client/compare/v0.2.3...v0.2.4
[0.2.3]: https://github.com/coderstephen/slack-client/compare/v0.2.2...v0.2.3
[0.2.2]: https://github.com/coderstephen/slack-client/compare/v0.2.1...v0.2.2
[0.2.1]: https://github.com/coderstephen/slack-client/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/coderstephen/slack-client/compare/v0.1.1...v0.2.0
[0.1.1]: https://github.com/coderstephen/slack-client/compare/v0.1.0...v0.1.1
[unreleased]: https://github.com/sagebind/slack-client/compare/v0.2.5...HEAD
[0.2.5]: https://github.com/sagebind/slack-client/compare/v0.2.4...v0.2.5
[0.2.4]: https://github.com/sagebind/slack-client/compare/v0.2.3...v0.2.4
[0.2.3]: https://github.com/sagebind/slack-client/compare/v0.2.2...v0.2.3
[0.2.2]: https://github.com/sagebind/slack-client/compare/v0.2.1...v0.2.2
[0.2.1]: https://github.com/sagebind/slack-client/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/sagebind/slack-client/compare/v0.1.1...v0.2.0
[0.1.1]: https://github.com/sagebind/slack-client/compare/v0.1.0...v0.1.1
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# PHP Slack API Client
[![Build](https://img.shields.io/scrutinizer/build/g/sagebind/slack-client.svg)](https://scrutinizer-ci.com/g/coderstephen/slack-client)
[![Build](https://img.shields.io/scrutinizer/build/g/sagebind/slack-client.svg)](https://scrutinizer-ci.com/g/sagebind/slack-client)
[![Version](https://img.shields.io/packagist/v/coderstephen/slack-client.svg)](https://packagist.org/packages/coderstephen/slack-client)
[![License](https://img.shields.io/packagist/l/coderstephen/slack-client.svg)](https://packagist.org/packages/coderstephen/slack-client)
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/sagebind/slack-client.svg)](https://scrutinizer-ci.com/g/coderstephen/slack-client)
[![Code Quality](https://img.shields.io/scrutinizer/g/sagebind/slack-client.svg)](https://scrutinizer-ci.com/g/coderstephen/slack-client)
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/sagebind/slack-client.svg)](https://scrutinizer-ci.com/g/sagebind/slack-client)
[![Code Quality](https://img.shields.io/scrutinizer/g/sagebind/slack-client.svg)](https://scrutinizer-ci.com/g/sagebind/slack-client)
[![Downloads](https://img.shields.io/packagist/dt/coderstephen/slack-client.svg)](https://packagist.org/packages/coderstephen/slack-client)

This is an API client for [Slack](http://slack.com) for PHP clients, with support for the [Real Time Messaging API](http://api.slack.com/rtm) (RTM API) using web sockets.
Expand Down Expand Up @@ -118,7 +118,7 @@ $loop->run();
See the [Slack API documentation](http://api.slack.com/events) for a list of possible events.

## Documentation
You can view the complete API documentation [here](http://coderstephen.github.io/slack-client/api).
You can view the complete API documentation [here](http://sagebind.github.io/slack-client/api).

## Running tests
You can run automated unit tests using [PHPUnit](http://phpunit.de) after installing dependencies:
Expand Down
Loading

0 comments on commit b9f4fd6

Please sign in to comment.