zhongjq / thrift-laravel
use Thrift in Laravel
Installs: 13
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 7
pkg:composer/zhongjq/thrift-laravel
Requires
- php: >=7.0.0
- angejia/thrift: ^0.9.3.4
- illuminate/http: >=5.1
- illuminate/support: >=5.1
- symfony/http-foundation: >=2.7
Requires (Dev)
- mockery/mockery: ^1.0
- phpunit/phpunit: ^6.4
README
use Thrift in Laravel
How to use
Server side
-
composer require angejia/thrift-laravel -
add provider to
app.providers:\Angejia\Thrift\ThriftServiceProvider::class -
setting
thrift.providersin fileconfig/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::classtoapp\Http\Kernelin default, the request to
/rpcwill be process by Middleware, if you want to change this, please extendThriftServerMiddlewareand overwriteprocessmethod
Client side
composer require angejia/thrift-laravel- add provider in
app.providers:\Angejia\Thrift\ThriftServiceProvider::class - setting
thrift.dependsin fileconfig/thrift.php:// key is url // value is array of service name "http://localhost/rpc" => [ 'Angejia.ImageService', ] - usage:
/** @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();
TODO
- Unittest