Yii2 helper for creating firebase connection on real time.
The preferred way to install this extension is through composer.
- Either run
php composer.phar require --prefer-dist alkurn/yii2-firebase "dev-master"
or add
"alkurn/yii2-firebase":"dev-master"
to the require section of your application's composer.json
file.
- Add a new component in
components
section of your application's configuration file (optional), for example:
'components' => [
'firebase' => [
'class' => 'alkurn\firebase\Firebase',
'credential_file' => 'uploads/firebase-credential.json',
'database_uri' => 'https://firebase-db.firebaseio.com', // (optional)
],
],
and in bootstrap
section, for example:
'bootstrap' => ['log','firebase'],
It is necessary if you want to set global helper's settings for the application.
For example:
$db = Yii::$app->firebase->getDatabase();