Skip to content

amphp/websocket-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

f42543a · Feb 26, 2020
Nov 3, 2019
Feb 10, 2019
Feb 22, 2020
Mar 29, 2019
Dec 22, 2019
Dec 15, 2017
Dec 16, 2015
Dec 22, 2019
Dec 23, 2017
Feb 6, 2019
Feb 26, 2020
Feb 22, 2020
Dec 15, 2017
Feb 22, 2020
Feb 22, 2020
Aug 6, 2019

Repository files navigation

websocket-client

Build Status CoverageStatus License

amphp/websocket-client is an async WebSocket client for PHP based on Amp.

Installation

This package can be installed as a Composer dependency.

composer require amphp/websocket-client

Requirements

  • PHP 7.2+

Documentation & Examples

More extensive code examples reside in the examples directory.

use Amp\Websocket\Client\Connection;
use Amp\Websocket\Message;
use function Amp\delay;
use function Amp\Websocket\Client\connect;

// Connects to the Kaazing echoing websocket demo.
Amp\Loop::run(function () {
    /** @var Connection $connection */
    $connection = yield connect('ws://demos.kaazing.com/echo');
    yield $connection->send("Hello!");

    $i = 0;

    while ($message = yield $connection->receive()) {
        /** @var Message $message */
        $payload = yield $message->buffer();
        printf("Received: %s\n", $payload);

        if ($payload === "Goodbye!") {
            $connection->close();
            break;
        }

        yield delay(1000); // Pause the coroutine for 1 second.

        if ($i < 3) {
            yield $connection->send("Ping: " . ++$i);
        } else {
            yield $connection->send("Goodbye!");
        }
    }
});

Versioning

amphp/websocket-client follows the semver semantic versioning specification like all other amphp packages.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

License

The MIT License (MIT). Please see LICENSE for more information.