Skip to content
This repository was archived by the owner on Oct 19, 2023. It is now read-only.

Commit efeb7c6

Browse files
author
Takashi Matsuo
committed
Added grpc extension.
1 parent 0a83f94 commit efeb7c6

File tree

4 files changed

+4
-0
lines changed

4 files changed

+4
-0
lines changed

php-nginx/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,7 @@ php.ini):
217217
These extensions are only available with PHP 5.6:
218218

219219
- suhosin (shared, but enabled by default)
220+
- gRPC (shared)
220221

221222
## Add something to php.ini
222223

php-nginx/build-scripts/build_php56.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ mkdir -p ${PHP56_DIR}/lib/conf.d
122122
${PHP56_DIR}/bin/pecl install memcache
123123
${PHP56_DIR}/bin/pecl install mongodb
124124
${PHP56_DIR}/bin/pecl install redis
125+
${PHP56_DIR}/bin/pecl install grpc-beta
125126

126127
rm -rf /tmp/pear
127128

testapps/php56_custom/php.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@ extension=xmlrpc.so
3232
extension=xsl.so
3333
extension=mongodb.so
3434
extension=redis.so
35+
extension=grpc.so

tests/PHP5ExtensionsTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ public function testExtensions()
5454
'mysql',
5555
# Only available for PHP < 7 right now.
5656
'suhosin',
57+
'grpc',
5758
)
5859
);
5960
$resp = $this->client->get('extensions.php');

0 commit comments

Comments
 (0)