├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── composer.json ├── src ├── Emitter.php ├── binary.php └── msgpack_pack.php └── test ├── process.php └── test.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rase-/socket.io-php-emitter/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rase-/socket.io-php-emitter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rase-/socket.io-php-emitter/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rase-/socket.io-php-emitter/HEAD/composer.json -------------------------------------------------------------------------------- /src/Emitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rase-/socket.io-php-emitter/HEAD/src/Emitter.php -------------------------------------------------------------------------------- /src/binary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rase-/socket.io-php-emitter/HEAD/src/binary.php -------------------------------------------------------------------------------- /src/msgpack_pack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rase-/socket.io-php-emitter/HEAD/src/msgpack_pack.php -------------------------------------------------------------------------------- /test/process.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rase-/socket.io-php-emitter/HEAD/test/process.php -------------------------------------------------------------------------------- /test/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rase-/socket.io-php-emitter/HEAD/test/test.php --------------------------------------------------------------------------------