zixsihub/jsonrpc

PHP JSON-RPC 2.0 Server Implementation

1.1.0 2022-11-10 11:44 UTC

This package is auto-updated.

Last update: 2024-04-10 15:32:47 UTC


README

Installation

If you're using Composer, you can include this library (zixsihub/jsonrpc) like this:

composer require "zixsihub/jsonrpc"

Getting started

$server = new Server([
	'one' => OneClass::class,
	'two' => new TwoClass(),
]);

$server->run();