Skip to content

Commit fb5bb1e

Browse files
committed
ci: add PHP 8.2 support to test matrix and composer requirements
1 parent 9b6695b commit fb5bb1e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/psalm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: true
1515
matrix:
16-
php: [7.4, 8.0, 8.1]
16+
php: [7.4, 8.0, 8.1, 8.2]
1717
steps:
1818
- uses: actions/checkout@v4
1919

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
os: [ubuntu-latest, windows-latest]
12-
php: [7.4, 8.0, 8.1]
12+
php: [7.4, 8.0, 8.1, 8.2]
1313
dependency-version: [prefer-lowest, prefer-stable]
1414

1515
name: P${{ matrix.php }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.4|^8.0|^8.1",
19+
"php": "^7.4|^8.0|^8.1|^8.2",
2020
"ext-bcmath": "*",
2121
"ext-json": "*"
2222
},

0 commit comments

Comments
 (0)