From 65d2fd1fecfcf387547b1f4d5e45c7278aafdf86 Mon Sep 17 00:00:00 2001 From: Guido Contreras Woda Date: Thu, 18 Dec 2014 16:31:50 -0300 Subject: [PATCH] Changes in composer dependencies * Master branch points to Laravel ~4.2 * Added prefer-stable to only get the dev branches that we actually need (just doctrine/orm I believe). --- composer.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index b895287..46c18e4 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ ], "require": { "php": ">=5.5.0", - "illuminate/support": "4.*|5.*", + "illuminate/support": "~4.2", "doctrine/orm": "2.5.*", "doctrine/migrations": "1.*" }, @@ -26,5 +26,6 @@ "Tests\\": "tests/" } }, - "minimum-stability": "dev" + "minimum-stability": "dev", + "prefer-stable": true }