Skip to content

Commit 1b21d6c

Browse files
committed
* only allow update php within the range of patch versions to prevent creating #135 @ .github/renovate.json5
* replace https://getcomposer.org/doc/articles/versions.md#tilde-version-range- with more intuitive https://getcomposer.org/doc/articles/versions.md#wildcard-version-range- @ be/composer.json
1 parent b00c226 commit 1b21d6c

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/renovate.json5

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@
5454
// https://github.com/renovatebot/renovate/discussions/27906#discussioncomment-15052440
5555
// https://www.jvt.me/posts/2025/05/21/renovate-depname-packagename/
5656
"matchDepNames": ["php"],
57-
"separateMinorPatch": true,
58-
"separateMultipleMinor": true
57+
"allowedVersions": "<={{major}}.{{minor}}"
5958
},
6059
{
6160
// https://docs.renovatebot.com/language-constraints-and-upgrading/

be/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"minimum-stability": "stable",
66
"prefer-stable": true,
77
"require": {
8-
"php": "~8.4.18",
8+
"php": "8.4.*",
99
"ext-ctype": "*",
1010
"ext-iconv": "*",
1111
"ext-intl": "*",

0 commit comments

Comments
 (0)