firestore-php icon indicating copy to clipboard operation
firestore-php copied to clipboard

Firestore PHP Client (without gRPC extension)

Results 20 firestore-php issues
Sort by recently updated
recently updated
newest added

Please provide version that support guzzle version 6 and up

![image](https://user-images.githubusercontent.com/63977646/111269965-ef3ce200-8637-11eb-9d70-c5e066336895.png)

According to official Google library its the best way how to work with resources (at least for beginners). I can try write PR, but please tell me your opinion for...

$collections = $firestoreClient->listDocuments('users', [ 'pageSize' => 1, 'pageToken' => 'nextpagetoken' ]); in this if i try to set pageSize as 2 then i am not getting any response.

``` $val = [ 'timestamp' => new FirestoreTimestamp, 'a' => ['b'=>['c'=>'test']], ]; $ret = $firestoreClient->updateDocument($path, $val); ``` Unable to handle nested native arrays. This code will fail, and add *no...

I've been looking at the docs and the code but I can't find a way to get the id of a new document. Is it possible? Here's an example: ```...

I got the following error: Problem 1 - morrislaptop/firestore-php[v2.2.0, ..., v2.2.2] require kreait/firebase-php ^4.15 -> found kreait/firebase-php[4.15.0, ..., 4.x-dev] but it conflicts with your root composer.json require (^5.17). - Root...

Hello sir, I am working on firestore with laravel api using this package composer require ahsankhatri/firestore-php but i want collection=>document=>collection=>document=>collection=>document

In my project I have already guzzlehttp/guzzle ~7.x installed which I don't want to downgrade. Composer dependencies here says guzzlehttp/guzzle ~6.0|~5.0|~4.0 which do not satisfy my needs. Is there an...