zhongjq/thrift-laravel is a Laravel package for use thrift in laravel.
It currently has 0 GitHub stars and 13 downloads on Packagist (latest version 0.3.0).
Install it with composer require zhongjq/thrift-laravel.
Discover more Laravel packages by zhongjq
or browse all Laravel packages to compare alternatives.
Last updated
use Thrift in Laravel
composer require angejia/thrift-laravel
add provider to app.providers:
\Angejia\Thrift\ThriftServiceProvider::class
setting thrift.providers in file config/thrift.php:
// first is service name, defined in thrift file
// second in Service implement reference, e.g.
// class ImageServcie implement \Angejia\ImageServiceIf
['Angejia.ImageService', \Angejia\ImageService::class],
add Middleware \Angejia\Thrift\Middleware\ThriftServerMiddleware::class to app\Http\Kernel
in default, the request to /rpc will be process by Middleware,
if you want to change this, please extend ThriftServerMiddleware and overwrite process method
composer require angejia/thrift-laravelapp.providers:
\Angejia\Thrift\ThriftServiceProvider::class
thrift.depends in file config/thrift.php:
// key is url
// value is array of service name
"http://localhost/rpc" => [
'Angejia.ImageService',
]
/** @var \Angejia\Thrift\Contracts\ThriftClient $thriftClient */
$thriftClient = app(\Angejia\Thrift\Contracts\ThriftClient::class);
/** @var \Angejia\ImageServiceIf $imageService */
$imageService = $thriftClient->with('Angejia.ImageService');
$result = $imageService->foo();