zixsihub/jsonrpc

PHP JSON-RPC 2.0 Server Implementation

Maintainers

Package info

github.com/zixsihub/jsonrpc

Homepage

pkg:composer/zixsihub/jsonrpc

Statistics

Installs: 5

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

1.1.0 2022-11-10 11:44 UTC

This package is auto-updated.

Last update: 2026-03-10 19:16:40 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();