We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 332698f commit f55fe9cCopy full SHA for f55fe9c
.github/workflows/code-quality.yaml
@@ -55,12 +55,12 @@ jobs:
55
fi
56
done
57
58
- - name: Check all composer.json have dependency to "php" >=8.1
+ - name: Check all composer.json have dependency to "php" >=8.2
59
if: always()
60
run: |
61
for file in $(find src/ -mindepth 2 -type f -name composer.json); do
62
- if ! jq -e '.require.php | test(">=8.1")' "$file" > /dev/null; then
63
- echo "File $file does not have the dependency 'php' >=8.1 in its composer.json";
+ if ! jq -e '.require.php | test(">=8.2")' "$file" > /dev/null; then
+ echo "File $file does not have the dependency 'php' >=8.2 in its composer.json";
64
exit 1;
65
66
0 commit comments