From 2713c462a26494624169e0115323e5cdd5a07d50 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Wed, 7 Aug 2013 14:36:54 +0200 Subject: [PATCH] composer/installers dep workaround Moved to end of requirements, to work around a bug in composer - see https://github.com/composer/composer/issues/1147. This caused the dependencies to be installed in the wrong folder because the custom 'silverstripe-module' instructions hadn't been loaded at the time the core modules were installed via composer. --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 5d3a6916..e159f33c 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ ], "require": { "php": ">=5.2.4", - "silverstripe/framework": "2.4.*", - "composer/installers": "*" + "composer/installers": "*", + "silverstripe/framework": "2.4.*" } }