LaravelPackages.net
Acme Inc.
Toggle sidebar
firevel/firequent

Limited implementation of Eloquent based on Firestore.

7.126
26
0.7.2
About firevel/firequent

firevel/firequent is a Laravel package for limited implementation of eloquent based on firestore.. It currently has 26 GitHub stars and 7.126 downloads on Packagist (latest version 0.7.2). Install it with composer require firevel/firequent. Discover more Laravel packages by firevel or browse all Laravel packages to compare alternatives.

Last updated

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; with use 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.

Star History Chart