Go to file
Chris Boden 547c117e6c
Merge pull request #896 from mbabker/patch-2
Add ReturnTypeWillChange attribute to silence PHP 8.1 deprecations
2021-12-12 11:38:34 -05:00
.github/workflows Add Github actions so CI runs 2021-01-26 14:53:25 +01:00
src/Ratchet Add ReturnTypeWillChange attribute to silence PHP 8.1 deprecations 2021-07-25 16:26:20 -05:00
tests Lock minimum implicity dependency 2021-12-12 11:35:34 -05:00
.gitignore remove local project folder from gitignore 2014-09-12 11:46:33 -04:00
CHANGELOG.md Prep for v0.4.3 release 2020-06-04 10:22:07 -04:00
composer.json Lock minimum implicity dependency 2021-12-12 11:35:34 -05:00
LICENSE Prep for v0.4.3 release 2020-06-04 10:22:07 -04:00
Makefile Use phpunit from vendor in Makefile. 2018-03-03 00:29:11 +03:00
phpunit.xml.dist [Tests] Added Guzzle integration tests 2013-06-16 17:40:38 -04:00
README.md Add Github actions so CI runs 2021-01-26 14:53:25 +01:00
SECURITY.md Add email addresses to SECURITY.md 2021-08-31 13:40:20 -04:00

Ratchet

GitHub Actions Autobahn Testsuite 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
use Ratchet\MessageComponentInterface;
use Ratchet\ConnectionInterface;

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

/**
 * 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!'); };