From 341f32c3c0a40685c3d9f9f74cc49bf7691b17a9 Mon Sep 17 00:00:00 2001 From: jeroendedauw Date: Wed, 5 Aug 2015 23:58:05 +0200 Subject: [PATCH] Upper bound the version ranges of the dependencies This avoids pulling in breaking releases without first explicitly defining compatibility. See http://semver.org/ --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 3b9833a..83053f8 100644 --- a/composer.json +++ b/composer.json @@ -12,10 +12,10 @@ "minimum-stability": "stable", "require": { "php": ">=5.3.2", - "symfony/process": ">=2.3" + "symfony/process": "~2.3" }, "require-dev": { - "symfony/finder": ">=2.3" + "symfony/finder": "~2.3" }, "autoload": { "psr-0": {