phpzwd/chat

1.0.1 2025-07-01 06:15 UTC

This package is auto-updated.

Last update: 2025-07-03 22:54:43 UTC


README

install

composer require phpzwd/chat

Use

  • get chat url
<?php
use Phpzwd\Chat;

$config = [
    'app_id' => '240cfa7c1f13798166bffcf5f6b8a3ab',
    'source' => 'pc',
];
$chat = new Chat($config);
$chat_url = $chat->getUrl();
dump($chat_url);