├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── demo ├── client.php ├── index.html └── server.php ├── nbproject ├── project.properties └── project.xml └── src └── HemiFrame └── Lib └── WebSocket ├── Client.php └── WebSocket.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heminei/php-websocket/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heminei/php-websocket/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heminei/php-websocket/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heminei/php-websocket/HEAD/composer.json -------------------------------------------------------------------------------- /demo/client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heminei/php-websocket/HEAD/demo/client.php -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heminei/php-websocket/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heminei/php-websocket/HEAD/demo/server.php -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heminei/php-websocket/HEAD/nbproject/project.properties -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heminei/php-websocket/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /src/HemiFrame/Lib/WebSocket/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heminei/php-websocket/HEAD/src/HemiFrame/Lib/WebSocket/Client.php -------------------------------------------------------------------------------- /src/HemiFrame/Lib/WebSocket/WebSocket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heminei/php-websocket/HEAD/src/HemiFrame/Lib/WebSocket/WebSocket.php --------------------------------------------------------------------------------