Go to file
Chris Boden 7f532e1747 Perf update
Cherrypicked from 075f122e1489b1cd1b4f332719e64f80be500021
Re-use same exception for Frame buffering flow control
2016-02-10 18:55:23 -05:00
src/Ratchet Perf update 2016-02-10 18:55:23 -05:00
tests Ues pecl_http if available, cleanup 2015-05-31 13:54:43 -04:00
.gitignore remove local project folder from gitignore 2014-09-12 11:46:33 -04:00
.travis.yml misc: PHP "7", deps, license 2015-05-24 16:02:24 -04:00
CHANGELOG.md PSR-4, v0.3.3 2015-05-27 08:51:05 -04:00
composer.json New RFC interfaces, heartbeat init 2016-02-10 18:52:42 -05:00
LICENSE misc: PHP "7", deps, license 2015-05-24 16:02:24 -04:00
Makefile PSR-7 + RFC 2015-05-30 10:19:30 -04:00
phpunit.xml.dist [Tests] Added Guzzle integration tests 2013-06-16 17:40:38 -04:00
README.md Fix version badge 2014-06-15 11:27:15 -04:00

#Ratchet

Build Status Latest Stable Version

A PHP 5.3 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.

##WebSocket Compliance

  • Supports the RFC6455, HyBi-10+, and Hixie76 protocol versions (at the same time)
  • Tested on Chrome 13+, Firefox 6+, Safari 5+, iOS 4.2+, IE 8+
  • Ratchet passes the Autobahn Testsuite (non-binary messages)

##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.

PHP 5.3.9 (or higher) is required. If you have access, PHP 5.4 (or higher) is highly recommended for its performance improvements.

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);
    $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.send('Hello Me!');