diff --git a/.github/renovate-config.js b/.github/renovate-config.js index 768e39aab6efb..f702645c178d1 100644 --- a/.github/renovate-config.js +++ b/.github/renovate-config.js @@ -81,5 +81,13 @@ module.exports = { } )(), enabled: false, }, + // PHP non-dev deps need to work with the oldest PHP versions we support. + { + matchDatasources: [ 'packagist' ], + matchDepTypes: [ 'require' ], + constraints: { + php: `~${ versions.MIN_PHP_VERSION }.0`, + }, + }, ], };