felixfbecker / advanced-json-rpc
更高级的JSONRPC实现
v3.2.1
2021-06-11 22:34 UTC
Requires
- php: ^7.1 || ^8.0
- netresearch/jsonmapper: ^1.0 || ^2.0 || ^3.0 || ^4.0
- phpdocumentor/reflection-docblock: ^4.3.4 || ^5.0.0
Requires (Dev)
- phpunit/phpunit: ^7.0 || ^8.0
- dev-master
- v3.2.1
- v3.2.0
- v3.1.2
- v3.1.1
- v3.1.0
- v3.0.4
- v3.0.3
- v3.0.2
- v3.0.1
- v3.0.0
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
- v1.2.10
- v1.2.9
- v1.2.8
- v1.2.7
- v1.2.6
- v1.2.5
- v1.2.4
- v1.2.3
- v1.2.2
- v1.2.1
- v1.2.0
- v1.1.0
- v1.0.0
- dev-semantic-release-15.0.0-126.1.0
- dev-semantic-release-14.0.0-121.1.0
- dev-semantic-release-13.0.0-104.1.0
- dev-semantic-release-12.0.0-78.1.0
- dev-semantic-release-11.0.0-40.1.0
- dev-@semantic-release/last-release-git-tag-2.0.0-40.1.0
- dev-semantic-release-10
- dev-phpdocumentor/reflection-docblock-4.0.0-#2.0.0
This package is auto-updated.
Last update: 2024-09-12 05:37:00 UTC
README
提供JSONRPC请求和响应的基本类,以及一个可以解码JSONRPC请求并在目标上调用相应方法的Dispatcher
类。通过类型提示和@param
标签强制类型转换参数。
支持嵌套目标:如果方法类似于myNestedTarget->theMethod
,则分发器将在目标上查找myNestedTarget
属性,并在其上调用theMethod
。分隔符可配置,默认为PHP对象操作符->
。
示例
use AdvancedJsonRpc\Dispatcher; class Argument { public $aProperty; } class Target { public function someMethod(Argument $arg) { // $arg instanceof Argument === true // $arg->aProperty === 123 return 'Hello World'; } } $dispatcher = new Dispatcher(new Target()); $result = $dispatcher->dispatch(' { "jsonrpc": "2.0", "id": 1, "method": "someMethod", "params": { "arg": {"aProperty": 123} } } '); // $result === "Hello World"
嵌套目标
use AdvancedJsonRpc\Dispatcher; class TextDocumentManager { public function didOpen(string $uri) { return 'Thank you for this information'; } } class LanguageServer { public $textDocument; public function __construct() { $this->textDocument = new TextDocumentManager(); } } $dispatcher = new Dispatcher(new LanguageServer(), '/'); $result = $dispatcher->dispatch(' { "jsonrpc": "2.0", "id": 1, "method": "textDocument/didOpen", "params": { "uri": "file:///c/Users/felix/test.php" } } '); // $result === "Thank you for this information"