zixsihub/jsonrpc

PHP JSON-RPC 2.0 Server Implementation

Installs: 5

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/zixsihub/jsonrpc

1.1.0 2022-11-10 11:44 UTC

This package is auto-updated.

Last update: 2025-12-10 18:51:17 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();