Skip to content
This repository was archived by the owner on Apr 6, 2020. It is now read-only.

xp-forge/rocketchat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RocketChat API

Build Status on TravisCI XP Framework Module BSD Licence Required PHP 5.6+ Supports PHP 7.0+ Supports HHVM 3.4+ Latest Stable Version

Wraps the RocketChat REST API.

Examples

use com\rocketchat\RocketChatApi;
use util\Secret;

$username= '...';
$secret= new Secret('...');

$api= new RocketChatApi('https://chat.example.com/');
$api->login($username, $secret);

$channel= $api->channels->named('test');

foreach ($api->channels->historyOf($channel) as $message) {
  // ...
}

Releases

No releases published

Packages

No packages published

Languages