Skip to content

Commit 48b7368

Browse files
committed
Add PHP 8.1 support to GitHub workflow actions
1 parent 90cac4d commit 48b7368

4 files changed

Lines changed: 16 additions & 12 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
- ubuntu-latest
3838

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

4344
steps:
4445
- name: Install service memcached

.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-
- "7.4"
37+
- 8.1
3838

3939
steps:
4040
- name: Install service memcached
@@ -46,9 +46,9 @@ jobs:
4646
- name: Install PHP
4747
uses: shivammathur/setup-php@v2
4848
with:
49-
php-version: "${{ matrix.php }}"
49+
php-version: ${{ matrix.php }}
5050
ini-values: memory_limit=-1
51-
coverage: "pcov"
51+
coverage: pcov
5252
tools: composer:v2, pecl
5353

5454
- name: Determine composer cache directory

.github/workflows/static.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ jobs:
3333
- ubuntu-latest
3434

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

3840
steps:
3941
- name: Checkout

composer.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@
99
"memcached",
1010
"psr-16"
1111
],
12-
"homepage": "http://www.yiiframework.com/",
12+
"homepage": "https://www.yiiframework.com/",
1313
"license": "BSD-3-Clause",
1414
"support": {
1515
"issues": "https://github.com/yiisoft/cache-memcached/issues?state=open",
16-
"forum": "http://www.yiiframework.com/forum/",
17-
"wiki": "http://www.yiiframework.com/wiki/",
16+
"forum": "https://www.yiiframework.com/forum/",
17+
"wiki": "https://www.yiiframework.com/wiki/",
1818
"irc": "irc://irc.freenode.net/yii",
19+
"chat": "https://t.me/yii3en",
1920
"source": "https://github.com/yiisoft/cache-memcached"
2021
},
2122
"require": {
@@ -24,10 +25,10 @@
2425
"psr/simple-cache": "^1.0.1"
2526
},
2627
"require-dev": {
27-
"phpunit/phpunit": "^9.4",
28-
"roave/infection-static-analysis-plugin": "^1.14",
28+
"phpunit/phpunit": "^9.5",
29+
"roave/infection-static-analysis-plugin": "^1.16",
2930
"spatie/phpunit-watcher": "^1.23",
30-
"vimeo/psalm": "^4.3"
31+
"vimeo/psalm": "^4.18"
3132
},
3233
"autoload": {
3334
"psr-4": {

0 commit comments

Comments
 (0)