Skip to content

Commit

Permalink
Merge pull request #1 from chanshige/develop
Browse files Browse the repository at this point in the history
[update] Support >= 8.3
  • Loading branch information
chanshige authored Dec 12, 2023
2 parents 72feb31 + 1480128 commit 7b41dff
Show file tree
Hide file tree
Showing 17 changed files with 978 additions and 1,138 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,19 @@ on:
pull_request:
branches:
- develop
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '8.0' ]
php-versions: [ '8.0', '8.1', '8.2', '8.3']
phpunit-versions: [ 'latest' ]
name: PHP ${{ matrix.php-versions }} Test
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup PHP
Expand All @@ -34,7 +36,7 @@ jobs:

- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
Expand Down
31 changes: 18 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,25 @@
}
],
"require": {
"php": "^8.0",
"php": "^8.3",
"ext-crypto": "*",
"koriym/http-constants": "^1.1",
"psr/http-message": "^1.0",
"guzzlehttp/guzzle": "^7.3"
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"doctrine/coding-standard": "^9.0",
"phpunit/phpunit": "^10.0",
"doctrine/coding-standard": "^11.0",
"phpmd/phpmd": "^2.10",
"phpmetrics/phpmetrics": "^2.7",
"phpstan/phpstan": "^0.12",
"psalm/plugin-phpunit": "^0.15",
"slevomat/coding-standard": "^7.0",
"squizlabs/php_codesniffer": "^3.6",
"vimeo/psalm": "^4.7",
"mockery/mockery": "^1.4",
"psalm/plugin-mockery": "^0.9.0",
"phpstan/phpstan-mockery": "^0.12.14"
"phpmetrics/phpmetrics": "^2.8",
"phpstan/phpstan": "^1.9",
"psalm/plugin-phpunit": "^0",
"slevomat/coding-standard": "^8.14",
"squizlabs/php_codesniffer": "^3.8",
"vimeo/psalm": "^5.0",
"mockery/mockery": "^1.6",
"psalm/plugin-mockery": "^1.1",
"phpstan/phpstan-mockery": "^1.1"
},
"autoload": {
"psr-4": {
Expand Down Expand Up @@ -67,5 +67,10 @@
"@pcov",
"@metrics"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}
Loading

0 comments on commit 7b41dff

Please sign in to comment.