Vaibhavbuccha
Vaibhavbuccha

Reputation: 51

Is there any another way to configure Firestore with Php without recommendation of grpc extention?

Is there any other way to configure Firestore with Php without recommendation of grpc extension?

My Server is not supported grpc extension. Server contains centOs and RHEL6 .

Upvotes: 2

Views: 2113

Answers (2)

Benson
Benson

Reputation: 4391

Firestore Client for PHP without gRPC

The ahsankhatri/firestore-php package has been archived and wasn't compatible with php 8. A newer fork of that project has been published with support for Guzzle 7 and is compatible with PHP 7 & 8.

You can install it with:

composer require bensontrent/firestore-php

Upvotes: 1

sllopis
sllopis

Reputation: 2368

You can try either of the following:

  1. Github repository: Firestore PHP Client without gRCP extension
  2. Packagist - The PHP Package Repository: Firestore SDK for PHP without gRPC
  3. Github Repository: Firestore SDK for PHP without gRPC

Upvotes: 3

Related Questions