From a2394331aff1ad7053aec8df780f92b0e9d8ca51 Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Tue, 30 Apr 2013 19:08:50 +0300 Subject: [PATCH] composer/installer 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 433cae4f1..851e3198f 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ ], "require": { "php": ">=5.2.4", - "composer/installers": "*", - "silverstripe/cms": "2.4.*" + "silverstripe/cms": "2.4.*", + "composer/installers": "*" } -} \ No newline at end of file +}