1. Go to this page and download the library: Download inurosen/jsonrpc-server library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
inurosen / jsonrpc-server example snippets
class FooService {
public function bar($params) {
return $params;
}
}
MethodRegistry::register('hello.world', 'FooService@bar', HelloWorldValidator::class);
MethodRegistry::register('hello.world', function ($params) {
return 'Hello world!';
}, HelloWorldValidator::class);