├── LICENSE ├── README.md ├── composer.json └── src ├── Components ├── ClientConfig.php ├── Connection.php ├── OriginComponent.php ├── ServerConfig.php ├── WSClientTrait.php ├── WscMain.php └── WssMain.php ├── Contracts ├── CommonsContract.php ├── ConnectionContract.php ├── MessageContract.php ├── WebSocket.php ├── WebSocketContract.php ├── WebSocketServerContract.php └── WscCommonsContract.php ├── Exceptions ├── BadOpcodeException.php ├── BadUriException.php ├── ConnectionException.php └── WebSocketException.php ├── WebSocketClient.php └── WebSocketServer.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/composer.json -------------------------------------------------------------------------------- /src/Components/ClientConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/src/Components/ClientConfig.php -------------------------------------------------------------------------------- /src/Components/Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/src/Components/Connection.php -------------------------------------------------------------------------------- /src/Components/OriginComponent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/src/Components/OriginComponent.php -------------------------------------------------------------------------------- /src/Components/ServerConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/src/Components/ServerConfig.php -------------------------------------------------------------------------------- /src/Components/WSClientTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/src/Components/WSClientTrait.php -------------------------------------------------------------------------------- /src/Components/WscMain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/src/Components/WscMain.php -------------------------------------------------------------------------------- /src/Components/WssMain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/src/Components/WssMain.php -------------------------------------------------------------------------------- /src/Contracts/CommonsContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/src/Contracts/CommonsContract.php -------------------------------------------------------------------------------- /src/Contracts/ConnectionContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/src/Contracts/ConnectionContract.php -------------------------------------------------------------------------------- /src/Contracts/MessageContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/src/Contracts/MessageContract.php -------------------------------------------------------------------------------- /src/Contracts/WebSocket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/src/Contracts/WebSocket.php -------------------------------------------------------------------------------- /src/Contracts/WebSocketContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/src/Contracts/WebSocketContract.php -------------------------------------------------------------------------------- /src/Contracts/WebSocketServerContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/src/Contracts/WebSocketServerContract.php -------------------------------------------------------------------------------- /src/Contracts/WscCommonsContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/src/Contracts/WscCommonsContract.php -------------------------------------------------------------------------------- /src/Exceptions/BadOpcodeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/src/Exceptions/BadOpcodeException.php -------------------------------------------------------------------------------- /src/Exceptions/BadUriException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/src/Exceptions/BadUriException.php -------------------------------------------------------------------------------- /src/Exceptions/ConnectionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/src/Exceptions/ConnectionException.php -------------------------------------------------------------------------------- /src/Exceptions/WebSocketException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/src/Exceptions/WebSocketException.php -------------------------------------------------------------------------------- /src/WebSocketClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/src/WebSocketClient.php -------------------------------------------------------------------------------- /src/WebSocketServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arthurkushman/php-wss/HEAD/src/WebSocketServer.php --------------------------------------------------------------------------------