Skip to content

Commit d173518

Browse files
committed
Drop support for Laravel/Lumen <8.0
1 parent 1319948 commit d173518

File tree

3 files changed

+7
-14
lines changed

3 files changed

+7
-14
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,10 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
php: ['7.4', '8.0', '8.1']
14-
laravel: ['6.0', '7.0', '8.0']
14+
laravel: ['8.0']
1515
include:
1616
- laravel: '8.0'
1717
testbench: '6.0'
18-
- laravel: '7.0'
19-
testbench: '5.2'
20-
- laravel: '6.0'
21-
testbench: '4.8'
22-
exclude:
23-
- laravel: '6.0'
24-
php: '8.1'
25-
- laravel: '7.0'
26-
php: '8.1'
2718

2819
name: Laravel ${{ matrix.laravel }} (PHP ${{ matrix.php }})
2920

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ This is a release with breaking changes. Please review the following changes and
66

77
### Changes
88

9+
* Dropped support for Laravel/Lumen <8.0
910
* Removed deprecated Facades - use the `Kreait\Laravel\Firebase\Facades\Firebase` facade instead
1011
* `Kreait\Laravel\Firebase\Facades\FirebaseAuth`
1112
* `Kreait\Laravel\Firebase\Facades\FirebaseDatabase`

composer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,15 @@
1111
}
1212
],
1313
"require": {
14-
"php": "^7.2|^8.0",
1514
"kreait/firebase-php": "^5.24",
16-
"illuminate/contracts": "^6.0|^7.0|^8.0",
17-
"illuminate/support": "^6.0|^7.0|^8.0",
15+
"php": "^7.4|^8.0",
16+
"illuminate/contracts": "^8.0",
17+
"illuminate/support": "^8.0",
1818
"symfony/cache": "^5.4|^6.0"
1919
},
2020
"require-dev": {
21-
"orchestra/testbench": "^4.0|^5.0|^6.0",
21+
"orchestra/testbench": "^6.0",
22+
"laravel/lumen-framework": "^8.3",
2223
"symplify/easy-coding-standard": "^10.0"
2324
},
2425
"autoload": {

0 commit comments

Comments
 (0)