This package tries to leverage the power of Message Pack and msgpack.php Mainly this uses https://github.com/msgpack-rpc/msgpack-rpc-php while updating the underlying code & upgrading to the above mentioned msgpack.php package. There are 3 possible use cases for this repository due to it’s server & client perspectives Client (my main use case) $client = new Client('localhost', '1985');
$messages = $client->call("SyncJob", $job, $payload);
echo array_pop($messages);