hipchat / hipchat-php
PHP library for HipChat
Installs: 980 484
Dependents: 21
Suggesters: 4
Security: 0
Stars: 169
Watchers: 28
Forks: 52
Open Issues: 5
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2024-11-09 14:53:04 UTC
README
A PHP library for interacting with the HipChat REST API.
Composer Installation
HipChat-PHP can be installed with Composer (http://getcomposer.org/). Add the following to your composer.json file. Composer will handle the autoloading.
{ "require": { "hipchat/hipchat-php": ">=1.0.0" } }
Usage
$token = '<your api token>'; $hc = new HipChat\HipChat($token); // list rooms foreach ($hc->get_rooms() as $room) { echo " - $room->room_id = $room->name\n"; } // send a message to the 'Development' room from 'API' $hc->message_room('Development', 'API', 'This is just a test message!');
Testing
You can test this library (and your API key) using the example.php script as follows. It should print a list of your rooms and users.
./example.php <your api token>
To test the library itself, run the PHPUnit tests:
phpunit tests/