Skip to content

Commit 8ef19a0

Browse files
authored
Allow PHP 8.2 and run CI against it (#278)
1 parent edb9b79 commit 8ef19a0

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/ci.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020
php-version:
2121
- "8.0"
2222
- "8.1"
23+
- "8.2"
2324
operating-system:
2425
- "ubuntu-latest"
2526

@@ -49,7 +50,7 @@ jobs:
4950
run: "composer audit"
5051

5152
- name: "Run coding style"
52-
if: ${{ matrix.php-version != '8.1' }} # php-cs-fixer does not run on 8.1 yet
53+
if: ${{ matrix.dependencies == 'locked' && matrix.php-version == '8.0' }}
5354
run: "composer code-style:check"
5455

5556
- name: "Run PHPStan"

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
}
2121
},
2222
"require": {
23-
"php": ">=8.0,<8.2",
23+
"php": ">=8.0,<8.3",
2424
"ext-json": "*"
2525
},
2626
"require-dev": {

composer.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)