facebook twitter hatena line email

Php/composer/grpc

提供: 初心者エンジニアの簡易メモ
2023年10月20日 (金) 09:26時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==公式== 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...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

公式

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';