「Php/composer/grpc」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==公式== https://cloud.google.com/php/grpc?hl=ja#using-pecl ==インストール== <pre> mkdir php_grpc cd php_grpc curl -sS https://getcomposer.org/installer | php su...」) |
(相違点なし)
|
2023年10月20日 (金) 09:26時点における版
公式
https://cloud.google.com/php/grpc?hl=ja#using-pecl
インストール
mkdir php_grpc cd php_grpc curl -sS https://getcomposer.org/installer | php sudo pecl install grpc composer.phar require "grpc/grpc:^1.38" composer.phar require "google/protobuf:^3.17" sudo pecl install protobuf
インストール確認
- vendor/grpc
- vendor/google/protobuf
があることを確認
実行
index.php
<?php require_once __DIR__ . '/vendor/autoload.php';