Skip to content

Commit

Permalink
Add PHP 8.1 support to GitHub workflow actions
Browse files Browse the repository at this point in the history
  • Loading branch information
devanych committed Jan 26, 2022
1 parent 90cac4d commit 48b7368
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -37,8 +37,9 @@ jobs:
- ubuntu-latest

php:
- "7.4"
- "8.0"
- 7.4
- 8.0
- 8.1

steps:
- name: Install service memcached
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/mutation.yml
Expand Up @@ -34,7 +34,7 @@ jobs:
- ubuntu-latest

php:
- "7.4"
- 8.1

steps:
- name: Install service memcached
Expand All @@ -46,9 +46,9 @@ jobs:
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php }}"
php-version: ${{ matrix.php }}
ini-values: memory_limit=-1
coverage: "pcov"
coverage: pcov
tools: composer:v2, pecl

- name: Determine composer cache directory
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/static.yml
Expand Up @@ -33,7 +33,9 @@ jobs:
- ubuntu-latest

php:
- "7.4"
- 7.4
- 8.0
- 8.1

steps:
- name: Checkout
Expand Down
13 changes: 7 additions & 6 deletions composer.json
Expand Up @@ -9,13 +9,14 @@
"memcached",
"psr-16"
],
"homepage": "http://www.yiiframework.com/",
"homepage": "https://www.yiiframework.com/",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/yiisoft/cache-memcached/issues?state=open",
"forum": "http://www.yiiframework.com/forum/",
"wiki": "http://www.yiiframework.com/wiki/",
"forum": "https://www.yiiframework.com/forum/",
"wiki": "https://www.yiiframework.com/wiki/",
"irc": "irc://irc.freenode.net/yii",
"chat": "https://t.me/yii3en",
"source": "https://github.com/yiisoft/cache-memcached"
},
"require": {
Expand All @@ -24,10 +25,10 @@
"psr/simple-cache": "^1.0.1"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"roave/infection-static-analysis-plugin": "^1.14",
"phpunit/phpunit": "^9.5",
"roave/infection-static-analysis-plugin": "^1.16",
"spatie/phpunit-watcher": "^1.23",
"vimeo/psalm": "^4.3"
"vimeo/psalm": "^4.18"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 48b7368

Please sign in to comment.