pecl install grpc
// 使用brew安装php的php.ini路径
/usr/local/etc/php/7.2
// 在php.ini中追加
extension=grpc.so
// 重启php
brew services restart php@7.2
使用的时候要在composer里追加
"require": {
"grpc/grpc": "~1.30.0"
}
参考:grpcPHP官方
pecl install grpc
// 使用brew安装php的php.ini路径
/usr/local/etc/php/7.2
// 在php.ini中追加
extension=grpc.so
// 重启php
brew services restart php@7.2
使用的时候要在composer里追加
"require": {
"grpc/grpc": "~1.30.0"
}
参考:grpcPHP官方