├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── Attributes └── FirestoreDeleteAttribute.php ├── Authentication └── FirestoreAuthentication.php ├── Contracts └── FirestoreDataTypeContract.php ├── Exceptions ├── Client │ ├── BadRequest.php │ ├── Conflict.php │ ├── FieldNotFound.php │ ├── FieldTypeError.php │ ├── Forbidden.php │ ├── InvalidPathProvided.php │ ├── NotFound.php │ └── Unauthorized.php ├── Server │ └── InternalServerError.php └── UnhandledRequestError.php ├── Fields ├── FirestoreArray.php ├── FirestoreBytes.php ├── FirestoreGeoPoint.php ├── FirestoreObject.php ├── FirestoreReference.php └── FirestoreTimestamp.php ├── FirestoreClient.php ├── FirestoreDatabaseResource.php ├── FirestoreDocument.php ├── Handlers └── RequestErrorHandler.php ├── Helpers └── FirestoreHelper.php └── Query └── FirestoreQuery.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/composer.json -------------------------------------------------------------------------------- /src/Attributes/FirestoreDeleteAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Attributes/FirestoreDeleteAttribute.php -------------------------------------------------------------------------------- /src/Authentication/FirestoreAuthentication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Authentication/FirestoreAuthentication.php -------------------------------------------------------------------------------- /src/Contracts/FirestoreDataTypeContract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Contracts/FirestoreDataTypeContract.php -------------------------------------------------------------------------------- /src/Exceptions/Client/BadRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Exceptions/Client/BadRequest.php -------------------------------------------------------------------------------- /src/Exceptions/Client/Conflict.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Exceptions/Client/Conflict.php -------------------------------------------------------------------------------- /src/Exceptions/Client/FieldNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Exceptions/Client/FieldNotFound.php -------------------------------------------------------------------------------- /src/Exceptions/Client/FieldTypeError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Exceptions/Client/FieldTypeError.php -------------------------------------------------------------------------------- /src/Exceptions/Client/Forbidden.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Exceptions/Client/Forbidden.php -------------------------------------------------------------------------------- /src/Exceptions/Client/InvalidPathProvided.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Exceptions/Client/InvalidPathProvided.php -------------------------------------------------------------------------------- /src/Exceptions/Client/NotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Exceptions/Client/NotFound.php -------------------------------------------------------------------------------- /src/Exceptions/Client/Unauthorized.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Exceptions/Client/Unauthorized.php -------------------------------------------------------------------------------- /src/Exceptions/Server/InternalServerError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Exceptions/Server/InternalServerError.php -------------------------------------------------------------------------------- /src/Exceptions/UnhandledRequestError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Exceptions/UnhandledRequestError.php -------------------------------------------------------------------------------- /src/Fields/FirestoreArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Fields/FirestoreArray.php -------------------------------------------------------------------------------- /src/Fields/FirestoreBytes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Fields/FirestoreBytes.php -------------------------------------------------------------------------------- /src/Fields/FirestoreGeoPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Fields/FirestoreGeoPoint.php -------------------------------------------------------------------------------- /src/Fields/FirestoreObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Fields/FirestoreObject.php -------------------------------------------------------------------------------- /src/Fields/FirestoreReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Fields/FirestoreReference.php -------------------------------------------------------------------------------- /src/Fields/FirestoreTimestamp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Fields/FirestoreTimestamp.php -------------------------------------------------------------------------------- /src/FirestoreClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/FirestoreClient.php -------------------------------------------------------------------------------- /src/FirestoreDatabaseResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/FirestoreDatabaseResource.php -------------------------------------------------------------------------------- /src/FirestoreDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/FirestoreDocument.php -------------------------------------------------------------------------------- /src/Handlers/RequestErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Handlers/RequestErrorHandler.php -------------------------------------------------------------------------------- /src/Helpers/FirestoreHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Helpers/FirestoreHelper.php -------------------------------------------------------------------------------- /src/Query/FirestoreQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahsankhatri/firestore-php/HEAD/src/Query/FirestoreQuery.php --------------------------------------------------------------------------------