From 42a907f7f16e58fc2a14f7b240598e4d261ced95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20K=C3=A4hm?= Date: Mon, 29 Jul 2024 18:37:54 +0200 Subject: [PATCH] [TASK] Enable dependabot for all supported branches: Use PHP platform Dependabot requires `config.platform.php` in composer.json to work correctly. This will avoid troubles like: ``` Problem 1 - Root composer.json requires solarium/solarium 6.3.5 -> satisfiable by solarium/solarium[6.3.5]. - solarium/solarium 6.3.5 requires php ^8.0 -> your php version (7.4.33) does not satisfy that requirement. - solarium/solarium 6.3.5 requires php ^8.0 -> your php version (7.4.33) does not satisfy that requirement. ``` Relates: #3168 --- composer.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/composer.json b/composer.json index f195db42f..9105e8a05 100644 --- a/composer.json +++ b/composer.json @@ -70,6 +70,9 @@ "minimum-stability": "stable", "prefer-stable": true, "config": { + "platform": { + "php": "8.1" + }, "allow-plugins": true, "vendor-dir": ".Build/vendor", "bin-dir": ".Build/bin",