Package Data | |
---|---|
Maintainer Username: | KamiOrz |
Maintainer Contact: | 68152283@qq.com (XiaoGai) |
Package Create Date: | 2016-12-25 |
Package Last Update: | 2016-12-25 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-23 03:12:00 |
Package Statistics | |
---|---|
Total Downloads: | 27 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
Hprose https://github.com/hprose
HPROSE
is a High Performance Remote Object Service Engine.
It is a modern, lightweight, cross-language, cross-platform, object-oriented, high performance, remote dynamic communication middleware. It is not only easy to use, but powerful.
# composer
composer require kamiorz/lumen-hprose dev-master
# config/hprose.php
# bootstrap/app.php
# include the provider
$app->register(KamiOrz\LumenHprose\HproseServiceProvider::class);
# include the alias
class_alias('TKamiOrz\LumenHprose\HproseClientFacade', 'RpcClient');
class_alias('TKamiOrz\LumenHprose\HproseServerFacade', 'RpcServer');
class_alias('TKamiOrz\LumenHprose\HproseServiceFacade', 'RpcService');
# Lumen config
sudo cp vendor/kamiorz/lumen-hprose/config/hprose.php config
use RpcClient as Rpc;
$result = Rpc::someServerMethod($params);
Route::any('/api', function() {
$server = app('RpcServer');
// Hprose support XmlRPC and JsonRPC
// if want support XmlRpc
$server->addFilter(new Hprose\Filter\XMLRPC\ServiceFilter());
// if want support JsonRpc
$server->addFilter(new Hprose\Filter\JSONRPC\ServiceFilter());
$server->addInstanceMethods(new \App\Services\SomeHprosePublishServices());
$server->start();
});
# app/Http/Middleware/VerifyCsrfToken.php
[...]
protected $except = [
'api' // OR 'api*'
];
Please refer to https://github.com/hprose/hprose-php