Skip to content

Commit bc11cde

Browse files
committed
Add PHP 8.1 support to GitHub workflow actions
1 parent ac94fde commit bc11cde

8 files changed

Lines changed: 18 additions & 13 deletions

File tree

.github/workflows/mssql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jobs:
3939
php:
4040
- 7.4
4141
- 8.0
42+
- 8.1
4243

4344
mssql:
4445
- server:2017-latest

.github/workflows/mutation.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ jobs:
3636
- ubuntu-latest
3737

3838
php:
39-
- 7.4
40-
- 8.0
39+
- 8.1
4140

4241
services:
4342
mssql:

.github/workflows/mysql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jobs:
3939
php:
4040
- 7.4
4141
- 8.0
42+
- 8.1
4243

4344
mysql:
4445
- 5.7
@@ -86,4 +87,3 @@ jobs:
8687

8788
- name: Run tests with phpunit
8889
run: vendor/bin/phpunit --group Mysql --colors=always
89-

.github/workflows/oracle.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jobs:
3939
php:
4040
- 7.4
4141
- 8.0
42+
- 8.1
4243

4344
services:
4445
oci:

.github/workflows/pgsql.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jobs:
3939
php:
4040
- 7.4
4141
- 8.0
42+
- 8.1
4243

4344
pgsql:
4445
- 9

.github/workflows/sqlite.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
php:
4141
- 7.4
4242
- 8.0
43+
- 8.1
4344

4445
steps:
4546
- name: Checkout

.github/workflows/static.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
php:
3636
- 7.4
3737
- 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: pcov
4950

composer.json

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,29 +8,30 @@
88
"cache",
99
"psr-16"
1010
],
11-
"homepage": "http://www.yiiframework.com/",
11+
"homepage": "https://www.yiiframework.com/",
1212
"license": "BSD-3-Clause",
1313
"support": {
14-
"source": "https://github.com/yiisoft/cache-db",
1514
"issues": "https://github.com/yiisoft/cache-db/issues",
16-
"forum": "http://www.yiiframework.com/forum/",
17-
"wiki": "http://www.yiiframework.com/wiki/",
18-
"irc": "irc://irc.freenode.net/yii"
15+
"forum": "https://www.yiiframework.com/forum/",
16+
"wiki": "https://www.yiiframework.com/wiki/",
17+
"irc": "irc://irc.freenode.net/yii",
18+
"chat": "https://t.me/yii3en",
19+
"source": "https://github.com/yiisoft/cache-db"
1920
},
2021
"minimum-stability": "dev",
2122
"prefer-stable": true,
2223
"require": {
2324
"php": "^7.4|^8.0",
2425
"ext-pdo": "*",
25-
"psr/simple-cache": "~1.0.1",
26+
"psr/simple-cache": "^1.0.1",
2627
"yiisoft/db": "^3.0@dev",
2728
"yiisoft/yii-db-migration": "^1.0@dev"
2829
},
2930
"require-dev": {
30-
"phpunit/phpunit": "^9.4",
31-
"roave/infection-static-analysis-plugin": "^1.14",
31+
"phpunit/phpunit": "^9.5",
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/psr-dummy-provider": "^1.0"
3536
},
3637
"provide": {

0 commit comments

Comments
 (0)