Skip to content

Commit 2750398

Browse files
committed
Drop PHP 8.1
1 parent e7401ba commit 2750398

File tree

4 files changed

+8
-15
lines changed

4 files changed

+8
-15
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,14 @@ jobs:
2828
phpunit:
2929
strategy:
3030
matrix:
31-
php: [8.2, 8.1]
32-
laravel: ["9.*", "10.*", "11.*"]
31+
php: [8.3, 8.2]
32+
laravel: ["10.*", "11.*"]
3333
os: [ubuntu-latest]
3434
include:
3535
- laravel: 10.*
3636
testbench: ^8.0
37-
- laravel: 9.*
38-
testbench: ^7.0
3937
- laravel: 11.*
4038
testbench: ^9.0
41-
exclude:
42-
- laravel: 11.*
43-
php: 8.1
4439
runs-on: ${{ matrix.os }}
4540
name: phpunit (P${{ matrix.php }} - L${{ matrix.laravel }})
4641
env:

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
}
2222
},
2323
"require": {
24-
"php": "^8.1",
25-
"illuminate/database": "^9.0|^10.0|^11.0"
24+
"php": "^8.2",
25+
"illuminate/database": "^10.0|^11.0"
2626
},
2727
"require-dev": {
28-
"phpunit/phpunit": "^9|^10.5",
29-
"orchestra/testbench": "^7.0|^8.0|^9.0",
28+
"phpunit/phpunit": "^10.5",
29+
"orchestra/testbench": "^8.0|^9.0",
3030
"squizlabs/php_codesniffer": "^3.6",
3131
"larastan/larastan": "^3.0"
3232
},

composer.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

phpstan.neon

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ includes:
22
- ./vendor/nunomaduro/larastan/extension.neon
33

44
parameters:
5-
65
paths:
76
- src/
8-
97
level: 5

0 commit comments

Comments
 (0)