2017 © Pedro Peláez
 

library reamp

PHP WebSocket library

image

ekstazi/reamp

PHP WebSocket library

  • Sunday, March 11, 2018
  • by Ekstazi
  • Repository
  • 1 Watchers
  • 0 Stars
  • 112 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 509 Forks
  • 5 Open issues
  • 19 Versions
  • 35 % Grown

The README.md

ReAmp

What is ReAmp ? It is port of RatchEt to amphp/amp. It was created as fork of original project but add some new features: * Use different namespace * Use amphp by default * Php7 support * Phpunit 6 * Code style, (*1)

There still lack of features but will be done in future: * http request body support (post/put/create) * http request pipeline support * psr logging support * better parsing similar to amp/aerys style * support async and promises in components, (*2)

Because code base is similar to Ratchet documentation can be found on original site., (*3)

Ratchet

Build Status Autobahn Testsuite Latest Stable Version, (*4)

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., (*5)

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., (*6)

Documentation

User and API documentation is available on Ratchet's website: http://socketo.me, (*7)

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

Need help? Have a question? Want to provide feedback? Write a message on the Google Groups Mailing List., (*9)


A quick example

<?php
use Reamp\MessageComponentInterface;
use Reamp\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, \Throwable $e) {
        $conn->close();
    }
}

    // Run the server application through the WebSocket protocol on port 8080
    $app = new Reamp\App('localhost', 8080);
    $app->route('/chat', new MyChat);
    $app->route('/echo', new Reamp\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!'); };

The Versions

11/03 2018

dev-#19_improve_test

dev-#19_improve_test http://socketo.me

PHP WebSocket library

  Sources   Download

MIT

The Requires

 

The Development Requires

server websocket sockets amphp ratchet websockets reamp

11/03 2018

dev-#18_empty_origin

dev-#18_empty_origin http://socketo.me

PHP WebSocket library

  Sources   Download

MIT

The Requires

 

The Development Requires

server websocket sockets amphp ratchet websockets reamp

11/03 2018
03/03 2018

dev-#11_subprotocol_if_required

dev-#11_subprotocol_if_required http://socketo.me

PHP WebSocket library

  Sources   Download

MIT

The Requires

 

The Development Requires

server websocket sockets amphp ratchet websockets reamp

03/03 2018

dev-#17_remove_loop_usage

dev-#17_remove_loop_usage http://socketo.me

PHP WebSocket library

  Sources   Download

MIT

The Requires

 

The Development Requires

server websocket sockets amphp ratchet websockets reamp

03/03 2018

dev-#13_better_error_handler

dev-#13_better_error_handler http://socketo.me

PHP WebSocket library

  Sources   Download

MIT

The Requires

 

The Development Requires

server websocket sockets amphp ratchet websockets reamp

19/02 2018

dev-#14_store_socket_prop

dev-#14_store_socket_prop http://socketo.me

PHP WebSocket library

  Sources   Download

MIT

The Requires

 

The Development Requires

server websocket sockets amphp ratchet websockets reamp

19/02 2018

dev-#15_support_data_on_close

dev-#15_support_data_on_close http://socketo.me

PHP WebSocket library

  Sources   Download

MIT

The Requires

 

The Development Requires

server websocket sockets amphp ratchet websockets reamp

19/02 2018

dev-#9_psr_server_request

dev-#9_psr_server_request http://socketo.me

PHP WebSocket library

  Sources   Download

MIT

The Requires

 

The Development Requires

server websocket sockets amphp ratchet websockets reamp

14/02 2018

dev-#1_async_support

dev-#1_async_support http://socketo.me

PHP WebSocket library

  Sources   Download

MIT

The Requires

 

The Development Requires

server websocket sockets amphp ratchet websockets reamp

13/02 2018

dev-#12_add_flush_all_to_connectiondecorator

dev-#12_add_flush_all_to_connectiondecorator http://socketo.me

PHP WebSocket library

  Sources   Download

MIT

The Requires

 

The Development Requires

server websocket sockets amphp ratchet websockets reamp

12/02 2018

dev-#7_support_websocket_component_in_app

dev-#7_support_websocket_component_in_app http://socketo.me

PHP WebSocket library

  Sources   Download

MIT

The Requires

 

The Development Requires

server websocket sockets amphp ratchet websockets reamp

12/12 2017

dev-fix-#516

dev-fix-#516 http://socketo.me

PHP WebSocket library

  Sources   Download

MIT

The Requires

 

The Development Requires

server websocket sockets ratchet websockets

15/10 2017

dev-router-race-fix

dev-router-race-fix http://socketo.me

PHP WebSocket library

  Sources   Download

MIT

The Requires

 

The Development Requires

server websocket sockets ratchet websockets

26/07 2013

dev-wamp-sync-bug

dev-wamp-sync-bug http://socketo.me

PHP WebSocket library

  Sources   Download

MIT

The Requires

 

server sockets ratchet websockets