Go to file
Chris Boden 344818d0f5 [Tests] Bring up unit testing coverage
Coverage on Http and Session
Set version to 0.3-beta
Cleaned up a couple API doc things
Removed Origin code from RFC, will be moved to Http
2013-04-28 15:25:16 -04:00
src/Ratchet [Tests] Bring up unit testing coverage 2013-04-28 15:25:16 -04:00
tests [Tests] Bring up unit testing coverage 2013-04-28 15:25:16 -04:00
.gitignore Makefile 2012-07-12 14:26:32 -04:00
.travis.yml Don't test old version of PHP 5 2013-04-27 00:11:34 -04:00
CHANGELOG.md [Http] ROUTING BABY 2013-04-26 23:01:28 -04:00
composer.json [Http] Fixed tests, upgraded React 2013-04-27 11:22:56 -04:00
composer.lock [Http] Fixed tests, upgraded React 2013-04-27 11:22:56 -04:00
LICENSE Version bump 2013-03-09 09:06:25 -05:00
Makefile [Http] Docs 2013-04-20 16:16:47 -04:00
phpunit.xml.dist Guzzle changes 2012-05-08 12:46:21 -04:00
README.md [Http] Facade class for routing 2013-04-27 00:05:10 -04:00

#Ratchet

Build Status

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 - 26, Firefox 6 - 19, Safari 5.0.1 - 6, iOS 4.2 - 6
  • 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 run on port 80, which requires root access. In order to do this, along with your sync web stack, you can either use a proxy or two separate machines. You can find more details in the server conf docs.

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

Cookies from your domain will be passed to the socket server, allowing you to identify users. Accessing your website's session data in Ratchet requires you to use Symfony2 Sessions on your website.

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 server example

<?php
use Ratchet\MessageComponentInterface;
use Ratchet\ConnectionInterface;
use Ratchet\Http\RoutedHttpServer;
use Ratchet\Server\IoServer;
use Ratchet\Tests\AbFuzzyServer;

    require __DIR__ . '/vendor/autoload.php';

/**
 * chat.php
 * Send any incoming messages to all connected clients (except sender)
 */
class Chat 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
    $router = new RoutedHttpServer;
    $router->addRoute('/echo', new AbFuzzyServer);
    $router->addRoute('/chat', new Chat);

    $server = IoServer::factory($router, 8000);
    $server->run();
$ php chat.php