Download the PHP package tungltdev/laravel-firebase-sync without Composer
On this page you can find all versions of the php package tungltdev/laravel-firebase-sync. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download tungltdev/laravel-firebase-sync
More information about tungltdev/laravel-firebase-sync
Files in tungltdev/laravel-firebase-sync
Package laravel-firebase-sync
Short Description Synchronize your Eloquent models with a Firebase realtime database.
License MIT
Homepage http://github.com/tungltdev/laravel-firebase-sync
Informations about the package laravel-firebase-sync
Laravel Firebase Sync
Synchronize your Eloquent models with the Firebase Realtime Database
Contents
- Installation
- Usage
- License
Installation
In order to add Laravel Firebase Sync to your project, just add
"tungltdev/laravel-firebase-sync": "~1.0"
to your composer.json. Then run composer install
or composer update
.
Or run composer require tungltdev/laravel-firebase-sync
if you prefer that.
Usage
Configuration
This package requires you to add the following section to your config/services.php
file:
Note: This package only requires the configuration keys database_url
and secret
. The other keys are only necessary if you want to also use the firebase JS API.
Synchronizing models
To synchronize your Eloquent models with the Firebase realtime database, simply let the models that you want to synchronize with Firebase use the Tungltdev\Firebase\SyncsWithFirebase
trait.
The data that will be synchronized is the array representation of your model. That means that you can modify the data using the existing Eloquent model attributes like visible
, hidden
or appends
.
Synchronizing models not sync on event
If you want to disable synchronization, you can use the attribute $withoutSyncsWithFirebase
'created' : off sync on create model
'updated' : off sync on update model
'deleted' : off sync on delete model
License
Laravel Firebase Sync is free software distributed under the terms of the MIT license.