Skip to content

Commit 489c26e

Browse files
committed
drop laravel 9 and php 8.0-8.1
1 parent 10d4471 commit 489c26e

File tree

2 files changed

+9
-22
lines changed

2 files changed

+9
-22
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,14 @@ jobs:
1010

1111
strategy:
1212
matrix:
13-
php: ['8.0', '8.1', '8.2', '8.3', '8.4']
14-
laravel: [9.*, 10.*, 11.*]
13+
php: ['8.2', '8.3', '8.4']
14+
laravel: [10.*, 11.*]
1515
stability: [prefer-lowest, prefer-stable]
1616
include:
17-
- laravel: 9.*
18-
testbench: 7.*
1917
- laravel: 10.*
2018
testbench: 8.*
2119
- laravel: 11.*
2220
testbench: 9.*
23-
exclude:
24-
- laravel: 9.*
25-
php: 8.3
26-
- laravel: 9.*
27-
php: 8.4
28-
- laravel: 10.*
29-
php: 8.0
30-
- laravel: 11.*
31-
php: 8.0
32-
- laravel: 11.*
33-
php: 8.1
3421

3522
steps:
3623
- name: Checkout code

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@
1919
],
2020
"require": {
2121
"php": "^8.0",
22-
"illuminate/contracts": "^9.0|^10.0|^11.0",
23-
"illuminate/support": "^9.0|^10.0|^11.0",
24-
"illuminate/validation": "^9.0|^10.0|^11.0",
25-
"illuminate/view": "^9.0|^10.0|^11.0",
22+
"illuminate/contracts": "^10.0|^11.0",
23+
"illuminate/support": "^10.0|^11.0",
24+
"illuminate/validation": "^10.0|^11.0",
25+
"illuminate/view": "^10.0|^11.0",
2626
"vlucas/phpdotenv": "^5.4.1"
2727
},
2828
"require-dev": {
29-
"phpunit/phpunit": "^9.5|^10.0|^11.0",
30-
"orchestra/testbench": "^7.4|^8.0|^9.0",
31-
"vimeo/psalm": "^4.23|^5.1|^6.0"
29+
"phpunit/phpunit": "^10.0|^11.0",
30+
"orchestra/testbench": "^8.0|^9.0",
31+
"vimeo/psalm": "^6.0"
3232
},
3333
"autoload": {
3434
"psr-4": {

0 commit comments

Comments
 (0)