Skip to content

Commit

Permalink
サポートするPHPバージョンを明示
Browse files Browse the repository at this point in the history
  • Loading branch information
kento-oka committed Nov 5, 2023
1 parent d70a9cc commit ec49a12
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/code_quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ "8.1", "8.2" ]
php: [ "8.0", "8.1", "8.2" ]
os: [ ubuntu-latest, windows-latest ]

steps:
Expand All @@ -55,7 +55,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ "8.1", "8.2" ]
php: [ "8.0", "8.1", "8.2" ]
os: [ ubuntu-latest, windows-latest ]

steps:
Expand All @@ -81,7 +81,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ "8.1", "8.2" ]
php: [ "8.0", "8.1", "8.2" ]
os: [ ubuntu-latest, windows-latest ]

steps:
Expand Down
4 changes: 3 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
"Fratily\\Tests\\CloneWith\\": "tests/"
}
},
"require": {},
"require": {
"php": "^8.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
Expand Down

0 comments on commit ec49a12

Please sign in to comment.