This is a mirror for google/protobuf.
And features you may like:
Please see patches from this.
根据proto文件,生成hyperf框架gRPC client、和gRPC route, 实现业务快速开发,减少不必要的重复工作,还有利于提高代码的规范化。
当前项目已经打包了可执行文件build/protoc-gen-hyperf.phar
可直接使用。
# 1. 将已生成的build目录中protoc-gen-hyperf.phar 文件移动到path路径中可执行目录
cp build/protoc-gen-hyperf.phar /usr/local/bin/protoc-gen-hyperf
# 2. 增加移动后文件可执行权限
chmod a+x /usr/local/bin/protoc-gen-hyperf
# 3. 在protoc命令中增加`--hyperf_out=xxx`指向生成文件目录,和php_out参数目录相同
protoc --php_out=./sdk --hyperf_out=./sdk helloworld.proto
# 4. 插件传参(修改clinet基础类):
# 由于插件的参数是通过--xxx_out参数中传递的key_value类型,以逗号分割,最后一个是生成目录
protoc --php_out=./sdk/ --hyperf_out=baseStub=\xxx\CoreClient:./sdk helloworld.proto