Download the PHP package firevel/firequent without Composer
On this page you can find all versions of the php package firevel/firequent. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download firevel/firequent
More information about firevel/firequent
Files in firevel/firequent
Download firevel/firequent
More information about firevel/firequent
Files in firevel/firequent
Vendor firevel
Package firequent
Short Description Limited implementation of Eloquent based on Firestore.
License MIT
Package firequent
Short Description Limited implementation of Eloquent based on Firestore.
License MIT
Please rate this library. Is it a good library?
Informations about the package firequent
Firequent (beta)
Laravel Eloquent for Firestore.
Overview
Firequent is a Laravel Eloquent version modified to work with Google Firestore inside Google App Engine. Firestore got the capacity to handle very high loads, and it's very fast but it offers much fewer features than traditional SQL databases.
Known limitations
- No incremental IDs. Instead random integer in range 1000000000000000 to 9007199254740991 (reason)
- Firestore is NoSQL database so no schemas/migrate support.
- Only simple where() queries (more info)
- No relationships support (soon!)
- No pagination (you should avoid using count() as counting is not supported by Firestore)
- Learn more
Usage
- Activate Firestore in you Google console (native mode)
- Inside your model file replace
use Illuminate\Database\Eloquent\Model;
withuse Firevel\Firequent\Model;
- If you are running your app outside Google App Engine, you will need to set GOOGLE_APPLICATION_CREDENTIALS in your .env file (more)
- Firestore is a NoSQL database, and it doesn't need migrations. Schemas are automatically generated from attributes.
All versions of firequent with dependencies
PHP Build Version
Package Version
Requires
grpc/grpc Version
^1.30.0
google/protobuf Version ^v3.13.0
google/cloud-firestore Version ^1.14.1
laravel/framework Version ^5.8||^6.0||^7.0
google/protobuf Version ^v3.13.0
google/cloud-firestore Version ^1.14.1
laravel/framework Version ^5.8||^6.0||^7.0
The package firevel/firequent contains the following files
Loading the files please wait ....