From 406ee71a48d0dc05dde81fbebafbe41876f7d9af Mon Sep 17 00:00:00 2001 From: Guy Sartorelli <36352093+GuySartorelli@users.noreply.github.com> Date: Thu, 15 Dec 2022 11:48:52 +1300 Subject: [PATCH] DEP Require dev branches for composer plugins (#340) 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 608db57..f01e9ad 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"