This package provides communication with wss and ws protocols.
to install
composer require zeus/socket_talkusing
require_once 'vendor/autoload.php';
$webSocket=new \Zeus\SocketTalk\WebSocket('wss://echo.websocket.org');
$webSocket->connect();
//$webSocket->isConnected();
$webSocket->send(json_encode(['type'=>'ping']));
echo $webSocket->read();
//$webSocket->disconnect();