Skip to content

Commit 1ef03e1

Browse files
Sergiy Petrovjeromegamez
authored andcommitted
Ensure support for all 8.x PHP versions
1 parent dce6337 commit 1ef03e1

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
php: ['7.4', '8.0']
13+
php: ['7.4', '8.0', '8.1']
1414
laravel: ['6.0', '7.0', '8.0']
1515
include:
1616
- laravel: '8.0'
@@ -19,6 +19,11 @@ jobs:
1919
testbench: '5.2'
2020
- laravel: '6.0'
2121
testbench: '4.8'
22+
exclude:
23+
- laravel: '6.0'
24+
php: '8.1'
25+
- laravel: '7.0'
26+
php: '8.1'
2227

2328
name: Laravel ${{ matrix.laravel }} (PHP ${{ matrix.php }})
2429

CHANGELOG.md

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

3+
## Unreleased
4+
### Added
5+
* Ensure support for all PHP 8.x versions
6+
([#110](https://github.com/kreait/laravel-firebase/pull/110))
7+
38
## 3.2.0 - 2021-1021
49
### Added
510
* Support for Database Auth Variable Overrides

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
}
1212
],
1313
"require": {
14-
"php": "^7.2|~8.0.0",
14+
"php": "^7.2|^8.0",
1515
"kreait/firebase-php": "^5.24",
1616
"illuminate/contracts": "^6.0|^7.0|^8.0",
1717
"illuminate/support": "^6.0|^7.0|^8.0"

0 commit comments

Comments
 (0)