Skip to content

Commit fad1a04

Browse files
authored
chore: drop support for PHP 8.1 (#8)
1 parent 26d9d65 commit fad1a04

File tree

4 files changed

+6
-14
lines changed

4 files changed

+6
-14
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: true
1818
matrix:
1919
os: [ubuntu-latest, macos-latest, windows-latest]
20-
php: [8.4, 8.3, 8.2, 8.1]
20+
php: [8.4, 8.3, 8.2]
2121
stability: [prefer-lowest, prefer-stable]
2222

2323
name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
}
2121
],
2222
"require": {
23-
"php": "^8.1"
23+
"php": "^8.2"
2424
},
2525
"require-dev": {
2626
"laravel/pint": "^1.18",
27-
"pestphp/pest": "^2.36|^3.5",
28-
"pestphp/pest-plugin-type-coverage": "^2.8|^3.1",
29-
"phpstan/phpstan": "^1.10|^2.0",
30-
"phpstan/phpstan-deprecation-rules": "^1.0|^2.0"
27+
"pestphp/pest": "^3.5",
28+
"pestphp/pest-plugin-type-coverage": "^3.1",
29+
"phpstan/phpstan": "^2.0",
30+
"phpstan/phpstan-deprecation-rules": "^2.0"
3131
},
3232
"autoload": {
3333
"psr-4": {

phpstan-baseline.neon

Lines changed: 0 additions & 6 deletions
This file was deleted.

phpstan.neon

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
includes:
2-
- phpstan-baseline.neon
32
- phar://phpstan.phar/conf/bleedingEdge.neon
43
- vendor/phpstan/phpstan-deprecation-rules/rules.neon
54

@@ -8,7 +7,6 @@ parameters:
87

98
paths:
109
- src
11-
- tests
1210

1311
parallel:
1412
maximumNumberOfProcesses: 4

0 commit comments

Comments
 (0)