zixsihub / jsonrpc
PHP JSON-RPC 2.0 Server Implementation
1.1.0
2022-11-10 11:44 UTC
Requires
- php: >=7.2.0
- ext-json: *
Requires (Dev)
- phpunit/phpunit: ~7.5
- vimeo/psalm: ~4.3
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();