TimSDK
1.0.0
IM Sdk for Tencent Instant Messaging.
$ composer require "jimchen/tim-sdk:^2.0"Basic Usage:
use TimSDK;
$options = [
'app_id' => '14000xxxx',
'identifier' => 'admin',
'key' => 'Your key',
'http' => [
'timeout' => 30,
],
];
$app = new TimSDKApplication($options);
$collect = $app->account->import('identifier', 'nickname', 'faceUrl');MIT