Skip to content

Releases: kreait/laravel-firebase

2.3.1

08 Sep 20:11
ae6d338
Compare
Choose a tag to compare

Fix-release for a mis-tagged 2.3.0 🙈

2.3.0

08 Sep 19:44
815ef67
Compare
Choose a tag to compare

Added support for Laravel 8.x

2.2.0

20 Jun 14:30
f802ed1
Compare
Choose a tag to compare

Added

It is now possible to log HTTP requests and responses to the Firebase APIs to existing log channels. See the "logging" section in config/firebase.php for the configuration options and the SDK Logging Documentation for more information.

Changed

The default branch of the GitHub repository has been renamed from master to main - if you're using dev-master as a version constraint in your composer.json, please update it to dev-main.

2.1.0

27 May 17:53
2.1.0
726d7a3
Compare
Choose a tag to compare

Added config option to debug HTTP requests made directly from the SDK. It is disabled by default and can be enabled with the FIREBASE_ENABLE_DEBUG=true environment variable or by adding 'debug' => true to config/firebase.php.

2.0.0

01 Apr 15:14
2.0.0
e14c113
Compare
Choose a tag to compare

If you are not using any classes or methods marked as @deprecated or @internal you should be able to upgrade from a 1.x release to 2.0 without changes to your code.

Updated kreait/firebase-php to ^5.0

1.5.0

29 Feb 11:45
1.5.0
670361d
Compare
Choose a tag to compare
  • Updated kreait/firebase-php to ^4.40.1
    • This allows for the service account credentials to be stored as strings in environment variables parsed for during auto discovery
  • Added support for Laravel/Lumen ^7.0

1.4.0

22 Feb 13:05
1.4.0
80029b1
Compare
Choose a tag to compare
  • Updated kreait/firebase-php to ^4.40.0
  • A relative path to a credentials file is now resolved with base_path() to address issues on Windows systems (#7)

1.3.0

15 Jan 19:14
1.3.0
3206b13
Compare
Choose a tag to compare
  • Added a notice about not using the factory pattern described in the SDK documentation when using this package. (Although not a code change, adding it in the changelog to enhance visibility)
  • Added support for Lumen
  • Updated kreait/firebase-php to ^4.38.1

1.2.0

25 Oct 23:23
1.2.0
3a9bf0f
Compare
Choose a tag to compare
  • Updated kreait/firebase-php to ^4.35.0
  • Added Firestore to the Service Provider and as FirebaseFirestore facade

1.1.0

19 Sep 08:23
e9efcd6
Compare
Choose a tag to compare
  • Updated kreait/firebase-php to ^4.32.0
  • Added Dynamic Links to the Service Provider and as FirebaseDynamicLinks facade
  • Added FIREBASE_DYNAMIC_LINKS_DEFAULT_DOMAIN as environment variable

To update the package, please re-publish its configuration

php artisan vendor:publish --provider="Kreait\Laravel\Firebase\ServiceProvider" --tag=config

or add the following section to config/firebase.php:

<?php

return [
    // ...
    'dynamic_links' => [
        'default_domain' => env('FIREBASE_DYNAMIC_LINKS_DEFAULT_DOMAIN')
    ],
    // ...
];