Skip to content

Commit df26170

Browse files
committed
Add PHP 8.1 support to GitHub workflow actions
1 parent 299e26d commit df26170

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

.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: 3 additions & 2 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

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,16 @@
1414
"issues": "https://github.com/yiisoft/strings/issues",
1515
"forum": "https://www.yiiframework.com/forum/",
1616
"wiki": "https://www.yiiframework.com/wiki/",
17-
"irc": "irc://irc.freenode.net/yii"
17+
"irc": "irc://irc.freenode.net/yii",
18+
"chat": "https://t.me/yii3en"
1819
},
1920
"require": {
2021
"php": "^7.4|^8.0",
2122
"ext-mbstring": "*"
2223
},
2324
"require-dev": {
2425
"phpunit/phpunit": "^9.5",
25-
"roave/infection-static-analysis-plugin": "^1.15",
26+
"roave/infection-static-analysis-plugin": "^1.16",
2627
"spatie/phpunit-watcher": "^1.23",
2728
"vimeo/psalm": "^4.18"
2829
},

0 commit comments

Comments
 (0)