Skip to content

Commit 5c6efcd

Browse files
authored
[2.x] Drop Laravel 8.x support (and PHP < 8) (#1082)
* drop Laravel 8.x support (and PHP < 8) * add composer conflict * match current framework PHP version
1 parent 9b4226d commit 5c6efcd

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

Diff for: .github/workflows/tests.yml

+2-7
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,8 @@ jobs:
1313
strategy:
1414
fail-fast: true
1515
matrix:
16-
php: [7.3, 7.4, '8.0', 8.1]
17-
laravel: [8, 9]
18-
exclude:
19-
- php: 7.3
20-
laravel: 9
21-
- php: 7.4
22-
laravel: 9
16+
php: ['8.0', 8.1]
17+
laravel: [9]
2318

2419
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
2520

Diff for: composer.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
}
1515
],
1616
"require": {
17-
"php": "^7.3|^8.0",
17+
"php": "^8.0.2",
1818
"ext-json": "*",
19-
"illuminate/support": "^8.37|^9.0",
19+
"illuminate/support": "^9.0",
2020
"jenssegers/agent": "^2.6",
2121
"laravel/fortify": "^1.12"
2222
},
@@ -27,6 +27,9 @@
2727
"orchestra/testbench": "^6.0|^7.0",
2828
"phpunit/phpunit": "^9.3"
2929
},
30+
"conflict": {
31+
"laravel/framework": "<9.19.0"
32+
},
3033
"autoload": {
3134
"psr-4": {
3235
"Laravel\\Jetstream\\": "src/"

0 commit comments

Comments
 (0)