From a09a99e9708cf6620a7ed6e8730f922951e78c72 Mon Sep 17 00:00:00 2001 From: Peter Gasser Date: Fri, 27 Nov 2015 23:08:28 +0100 Subject: [PATCH] use >=0.5.2 for specifying Robo dependency (thanks @lussoluca) normally, I would use the caret, but ^0.5.2 means >=0.5.2 <0.6.0. I simply assume new Robo versions do not break things ;) --- README.md | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8b4c849..80a50ee 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ Use the trait (according to your used version) in your RoboFile: ```php class RoboFile extends \Robo\Tasks { - // if you use ~2.1 for Robo ~0.5.2 + // if you use ~2.1 for Robo >=0.5.2 use \Boedah\Robo\Task\Drush\loadTasks; // if you use ~1.0 for Robo ~0.4 diff --git a/composer.json b/composer.json index 0607cc5..c457038 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ }, "require": { "php": ">=5.4.0", - "codegyre/robo": "~0.5.2" + "codegyre/robo": ">=0.5.2" }, "require-dev": { "phpunit/phpunit": "~4.4",