Merge pull request #16074 from bshaffer/issue-16072

fixes subpackage issue with loading composer
pull/16119/merge
Stanley Cheung 6 years ago committed by GitHub
commit a3939fd9d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      src/php/lib/Grpc/BaseStub.php

@ -83,10 +83,11 @@ class BaseStub
}
private static function updateOpts($opts) {
$package_config = json_decode(
file_get_contents(dirname(__FILE__).'/../../composer.json'),
true
);
if (!file_exists($composerFile = __DIR__.'/../../composer.json')) {
// for grpc/grpc-php subpackage
$composerFile = __DIR__.'/../composer.json';
}
$package_config = json_decode(file_get_contents($composerFile), true);
if (!empty($opts['grpc.primary_user_agent'])) {
$opts['grpc.primary_user_agent'] .= ' ';
} else {

Loading…
Cancel
Save