From 099fc50750b451324976f2c075ffbf25114ad7c0 Mon Sep 17 00:00:00 2001 From: Guy Sartorelli Date: Thu, 15 Dec 2022 10:42:08 +1300 Subject: [PATCH] DEP Require dev branches for composer plugins This will fix a problem where our CI is checking out the alpha versions instead of the current dev branch --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 608db572..f01e9adf 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,8 @@ "description": "The SilverStripe Framework Installer", "require": { "php": "^8.1", - "silverstripe/recipe-plugin": "^2", + "silverstripe/recipe-plugin": "2.x-dev", + "silverstripe/vendor-plugin": "2.x-dev", "silverstripe/recipe-cms": "5.x-dev", "silverstripe-themes/simple": "~3.2.0", "silverstripe/login-forms": "5.x-dev"