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