Skip to content

Commit e55451e

Browse files
committed
Add PHP 8.1 support to GitHub workflow actions
1 parent 7dd0b5c commit e55451e

4 files changed

Lines changed: 10 additions & 8 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,9 @@ jobs:
3737
- windows-latest
3838

3939
php:
40-
- "7.4"
41-
- "8.0"
40+
- 7.4
41+
- 8.0
42+
- 8.1
4243

4344
steps:
4445
- name: Checkout

.github/workflows/mutation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- ubuntu-latest
3232

3333
php:
34-
- "7.4"
34+
- 8.1
3535

3636
steps:
3737
- name: Checkout

.github/workflows/static.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ jobs:
3333
- ubuntu-latest
3434

3535
php:
36-
- "7.4"
37-
- "8.0"
36+
- 7.4
37+
- 8.0
38+
- 8.1
3839

3940
steps:
4041
- name: Checkout
@@ -43,7 +44,7 @@ jobs:
4344
- name: Install PHP
4445
uses: shivammathur/setup-php@v2
4546
with:
46-
php-version: "${{ matrix.php }}"
47+
php-version: ${{ matrix.php }}
4748
tools: composer:v2, cs2pr
4849
coverage: none
4950

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838
},
3939
"require-dev": {
4040
"phpunit/phpunit": "^9.5",
41-
"roave/infection-static-analysis-plugin": "^1.14",
41+
"roave/infection-static-analysis-plugin": "^1.16",
4242
"spatie/phpunit-watcher": "^1.23",
43-
"vimeo/psalm": "^4.12",
43+
"vimeo/psalm": "^4.18",
4444
"yiisoft/aliases": "^2.0",
4545
"yiisoft/psr-dummy-provider": "^1.0",
4646
"yiisoft/test-support": "^1.3"

0 commit comments

Comments
 (0)