From 13fbe3e2dde46502cf4a2eab70ee470a3107633c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carsten=20Bl=C3=BCm?= Date: Fri, 11 Dec 2015 09:35:50 +0100 Subject: [PATCH] Fix Composer version constraint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit “~1.0.*” results in a Composer throwing an UnexpectedValueException --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9fe1b3b..ad7dfb9 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Simply add the following dependency to your project’s composer.json file: ```js "require-dev": { // ... - "andres-montanez/magallanes": "~1.0.*" + "andres-montanez/magallanes": "~1.0" // ... } ``` @@ -39,7 +39,7 @@ $ bin/mage version ### System-wide installation with composer ### ```bash -$ composer global require "andres-montanez/magallanes=~1.0.*" +$ composer global require "andres-montanez/magallanes=~1.0" ``` Make sure you have ~/.composer/vendor/bin/ in your path.