Skip to content

Commit ecc3d3e

Browse files
committed
Add PHP 8.1 support to GitHub workflow actions
1 parent 091dec7 commit ecc3d3e

3 files changed

Lines changed: 12 additions & 9 deletions

File tree

.github/workflows/mutation.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- ubuntu-latest
3535

3636
php:
37-
- 8.0
37+
- 8.1
3838

3939
services:
4040
postgres:
@@ -54,10 +54,10 @@ jobs:
5454
- name: Install PHP with extensions
5555
uses: shivammathur/setup-php@v2
5656
with:
57-
php-version: "${{ matrix.php }}"
57+
php-version: ${{ matrix.php }}
5858
extensions: ${{ env.extensions }}
5959
ini-values: memory_limit=-1
60-
coverage: "pcov"
60+
coverage: pcov
6161
tools: composer:v2
6262

6363
- name: Determine composer cache directory

.github/workflows/static.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ jobs:
3636
- ubuntu-latest
3737

3838
php:
39+
- 7.4
3940
- 8.0
41+
- 8.1
4042

4143
steps:
4244
- name: Checkout
@@ -45,7 +47,7 @@ jobs:
4547
- name: Install PHP
4648
uses: shivammathur/setup-php@v2
4749
with:
48-
php-version: "${{ matrix.php }}"
50+
php-version: ${{ matrix.php }}
4951
extensions: ${{ env.extensions }}
5052
tools: composer:v2, cs2pr
5153
coverage: none

composer.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@
66
"yii",
77
"pgsql"
88
],
9-
"homepage": "http://www.yiiframework.com/",
9+
"homepage": "https://www.yiiframework.com/",
1010
"license": "BSD-3-Clause",
1111
"support": {
1212
"source": "https://github.com/yiisoft/db-pgsql",
1313
"issues": "https://github.com/yiisoft/db-pgsql/issues",
14-
"forum": "http://www.yiiframework.com/forum/",
15-
"wiki": "http://www.yiiframework.com/wiki/",
14+
"forum": "https://www.yiiframework.com/forum/",
15+
"wiki": "https://www.yiiframework.com/wiki/",
16+
"chat": "https://t.me/yii3en",
1617
"irc": "irc://irc.freenode.net/yii"
1718
},
1819
"minimum-stability": "dev",
@@ -28,9 +29,9 @@
2829
},
2930
"require-dev": {
3031
"phpunit/phpunit": "^9.5",
31-
"roave/infection-static-analysis-plugin": "^1.14",
32+
"roave/infection-static-analysis-plugin": "^1.16",
3233
"spatie/phpunit-watcher": "^1.23",
33-
"vimeo/psalm": "^4.4",
34+
"vimeo/psalm": "^4.18",
3435
"yiisoft/aliases": "^1.1|^2.0",
3536
"yiisoft/cache": "^1.0",
3637
"yiisoft/log": "^1.0"

0 commit comments

Comments
 (0)