Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add roadrunner as an option for implementing a gRPC PHP server #1400

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions content/en/docs/languages/php/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ spelling: cSpell:ignore autogen chmod devel PECL phar phpize phpunit RHEL
The example code is part of the [grpc][] repo.

{{% alert title="Note" color="info" %}}
You can only create gRPC clients in PHP. Use [another
language](/docs/languages/) to create a gRPC server.
This library only supports creating gRPC clients in PHP. To implement a gRPC
server in PHP, use a third party application server such as
[RoadRunner](https://docs.roadrunner.dev/docs/plugins/grpc) or
[Open Swoole](https://openswoole.com/docs/modules/grpc-server), or implement
using [another language](/docs/languages/).
{{% /alert %}}

1. Clone the [grpc][] repo and its submodules:
Expand Down