aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/lib/Grpc/BaseStub.php
diff options
context:
space:
mode:
authorGravatar Stanley Cheung <stanleycheung@google.com>2015-07-24 09:03:39 -0700
committerGravatar Stanley Cheung <stanleycheung@google.com>2015-07-24 09:04:08 -0700
commita75098d0afb6c8492cc8cdbef014b4de92f8b4c2 (patch)
treec58121b8ae371cb4092f59b92c7edb535d46714d /src/php/lib/Grpc/BaseStub.php
parentd357cc0a6392989e7d6c08c022f95f71e89b1059 (diff)
add user-agent for php
Diffstat (limited to 'src/php/lib/Grpc/BaseStub.php')
-rwxr-xr-xsrc/php/lib/Grpc/BaseStub.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/php/lib/Grpc/BaseStub.php b/src/php/lib/Grpc/BaseStub.php
index 48c00977eb..8c438e4bf9 100755
--- a/src/php/lib/Grpc/BaseStub.php
+++ b/src/php/lib/Grpc/BaseStub.php
@@ -60,7 +60,10 @@ class BaseStub {
}
unset($opts['update_metadata']);
}
-
+ $package_config = json_decode(
+ file_get_contents(dirname(__FILE__) . '/../../composer.json'), true);
+ $opts['grpc.primary_user_agent'] =
+ 'grpc-php/' . $package_config['version'];
$this->channel = new Channel($hostname, $opts);
}