skip to Main Content

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 .

2

Answers


  1. 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
    Login or Signup to reply.
  2. 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
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search