This is a wrapper for Rest API of Rocket Chat: https://developer.rocket.chat/reference/api/rest-api
This library is installed via Composer. You will need to require atdev/rocket-chat
:
composer require atdev/rocket-chat:~1.0
// Firstly, init
\ATDev\RocketChat\Chat::setUrl("http://chat.me"); // No trailing /
// Now, login
$result = \ATDev\RocketChat\Chat::login("[USER LOGIN]", "[USER PASSWORD]");
if (!$result) {
// Log the error
$error = \ATDev\RocketChat\Chat::getError();
}
$who = \ATDev\RocketChat\Chat::me();
if (!$who) {
// Log the error
$error = \ATDev\RocketChat\Chat::getError();
}
\ATDev\RocketChat\Chat::logout();
Now, when you are logged in, you can:
Tests are run by ./vendor/bin/phpunit tests
. Although the library code is designed to be compatible with php 5.6
, testing
requires php 7.3
as minimum because of phpunit
version 9
.
PHP-CS-Fixer is used to fix automatically coding standard issues.
.php_cs.dist
is set to handle PSR-12 coding style.
To lint code against code style run ./vendor/bin/php-cs-fixer fix --verbose --show-progress=estimating --dry-run
.
To fix code styles automatically run above command without --dry-run
option.