Skip to content

Commit 6487e6e

Browse files
committed
Bump dependencies
1 parent ad1056f commit 6487e6e

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELOG
22

3+
## Unreleased
4+
5+
* Bumped dependencies, the minimum version of the underlying SDK is now 6.7.0.
6+
* Updated comment in `config/firebase.php` to reference the default HTTP timeout
7+
* With `kreait/firebase` 6.7.0, the default was changed from ∞ to 30 seconds.
8+
39
## 4.1.0 - 2022-02-08
410

511
* Added support for Laravel 9 ([#118](https://github.com/kreait/laravel-firebase/pull/118))

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
],
1313
"require": {
1414
"php": "^7.4 || ^8.0",
15-
"kreait/firebase-php": "^6.0",
15+
"kreait/firebase-php": "^6.7",
1616
"illuminate/contracts": "^8.0 || ^9.0",
1717
"illuminate/support": "^8.0 || ^9.0",
18-
"symfony/cache": "^5.4 || ^6.0"
18+
"symfony/cache": "^5.4 || ^6.1.2"
1919
},
2020
"require-dev": {
2121
"orchestra/testbench": "^6.0 || 7.0",
22-
"symplify/easy-coding-standard": "^10.0"
22+
"symplify/easy-coding-standard": "^10.3.3"
2323
},
2424
"autoload": {
2525
"psr-4": {

config/firebase.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,9 @@
181181
/*
182182
* Set the maximum amount of seconds (float) that can pass before
183183
* a request is considered timed out
184-
* (default: indefinitely)
184+
*
185+
* The default time out can be reviewed at
186+
* https://github.com/kreait/firebase-php/blob/6.x/src/Firebase/Http/HttpClientOptions.php
185187
*/
186188
'timeout' => env('FIREBASE_HTTP_CLIENT_TIMEOUT'),
187189
],

0 commit comments

Comments
 (0)