cloudadic/php-ejabberd
最新稳定版本:1.0.4
Composer 安装命令:
composer require cloudadic/php-ejabberd
包简介
Ejabberd Client Library for chat apps
README 文档
README
PHP Ejabberd Client to communicate with XMPP Client
Installation
composer require cloudadic/php-ejabberd
Usage
<?php require __DIR__ . '/vendor/autoload.php'; use Ejabberd\Client; $client = Client([ 'port' => 5285, 'host' => '192.178.12.1', 'apiEndPoint' => 'your_endpoint' ]);
Examples
// Add User $user = 'john@doe.com'; $client->addUser($user); // Ban Account $user = 'john@doe.com'; $reason = 'Acting too smart'; $client->banAccount($user, $reason);
统计信息
- 总下载量: 713
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2017-06-24