plesk/ratchetphp

PHP WebSocket library

Maintainers

👁 sibprogrammer

Package info

github.com/plesk/ratchetphp

Homepage

pkg:composer/plesk/ratchetphp

Statistics

Installs: 88 274

Dependents: 3

Suggesters: 0

Stars: 17

v1.0.6 2025-03-10 09:15 UTC

Requires

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 3152ad7c236d77a3e50fe0e02ec64bfa2277b56c

  • Chris Boden <cboden.woop@gmail.com>
  • Matt Bonneau
  • Alexey Yuzhakov

websocketsocketsserverWebSocketsRatchet


README

👁 GitHub Actions
👁 Latest Stable Version

A PHP library for asynchronously serving WebSockets. Build up your application through simple interfaces and re-use your application without changing any of its code just by combining different components.

Requirements

Shell access is required and root access is recommended. To avoid proxy/firewall blockage it's recommended WebSockets are requested on port 80 or 443 (SSL), which requires root access. In order to do this, along with your sync web stack, you can either use a reverse proxy or two separate machines. You can find more details in the server conf docs.

Documentation

User and API documentation is available on Ratchet's website: http://socketo.me

See https://github.com/cboden/Ratchet-examples for some out-of-the-box working demos using Ratchet.

Need help? Have a question? Want to provide feedback? Write a message on the Google Groups Mailing List.

A quick example

<?php
// Make sure composer dependencies have been installed
require __DIR__ . '/vendor/autoload.php';

use Ratchet\MessageComponentInterface;
use Ratchet\ConnectionInterface;

/**
 * chat.php
 * Send any incoming messages to all connected clients (except sender)
 */
class MyChat implements MessageComponentInterface
{
 protected $clients;

 public function __construct()
 {
 $this->clients = new \SplObjectStorage();
 }

 public function onOpen(ConnectionInterface $conn)
 {
 $this->clients->attach($conn);
 }

 public function onMessage(ConnectionInterface $from, $msg)
 {
 foreach ($this->clients as $client) {
 if ($from != $client) {
 $client->send($msg);
 }
 }
 }

 public function onClose(ConnectionInterface $conn)
 {
 $this->clients->detach($conn);
 }

 public function onError(ConnectionInterface $conn, \Exception $e)
 {
 $conn->close();
 }
}

// Run the server application through the WebSocket protocol on port 8080
$app = new Ratchet\App('localhost', 8080);
$app->route('/chat', new MyChat(), array('*'));
$app->route('/echo', new Ratchet\Server\EchoServer, array('*'));
$app->run();
$ php chat.php
// Then some JavaScript in the browser:
var conn = new WebSocket('ws://localhost:8080/echo');
conn.onmessage = function(e) { console.log(e.data); };
conn.onopen = function(e) { conn.send('Hello Me!'); };