From 445c93b7c7f31a6339f5243c2a0d7030823bc5ba Mon Sep 17 00:00:00 2001 From: Ed Bentinck Date: Wed, 30 Aug 2017 13:00:06 -0500 Subject: [PATCH 1/3] Update versions to support Laravel 5.5+ --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 5b59238..2bf7dbd 100644 --- a/composer.json +++ b/composer.json @@ -11,8 +11,8 @@ ], "require": { "php": ">=5.5.9", - "illuminate/support": "5.1.* || 5.2.* || 5.3.* || 5.4.*", - "illuminate/filesystem": "5.1.* || 5.2.* || 5.3.* || 5.4.*", + "illuminate/support": "^5.1", + "illuminate/filesystem": "^5.1", "doctrine/annotations": "~1.2", "phpdocumentor/reflection-docblock": "3.1.*" }, From 403619204ee9735b57f3f4826c3dec95221ad3c0 Mon Sep 17 00:00:00 2001 From: Thilanga Pitigala Date: Mon, 18 Sep 2017 22:07:02 +1000 Subject: [PATCH 2/3] Added support to Laravel >= 5.1 --- composer.json | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/composer.json b/composer.json index 5b59238..3328e0e 100644 --- a/composer.json +++ b/composer.json @@ -11,10 +11,10 @@ ], "require": { "php": ">=5.5.9", - "illuminate/support": "5.1.* || 5.2.* || 5.3.* || 5.4.*", - "illuminate/filesystem": "5.1.* || 5.2.* || 5.3.* || 5.4.*", + "illuminate/support": "^5.1", + "illuminate/filesystem": "^5.1", "doctrine/annotations": "~1.2", - "phpdocumentor/reflection-docblock": "3.1.*" + "phpdocumentor/reflection-docblock": "^3.1" }, "require-dev": { "squizlabs/php_codesniffer": "~2.0", @@ -29,12 +29,5 @@ "psr-4": { "Dingo\\Blueprint\\Tests\\": "tests" } - }, - "extra": { - "branch-alias": { - "dev-master": "0.2-dev" - } - }, - "minimum-stability": "dev", - "prefer-stable": true + } } From eddbbe7aae19024fb78b630ea02ffa4aecd5415f Mon Sep 17 00:00:00 2001 From: Thilanga Pitigala Date: Mon, 18 Sep 2017 22:20:27 +1000 Subject: [PATCH 3/3] Added version alias --- composer.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 3328e0e..d72c543 100644 --- a/composer.json +++ b/composer.json @@ -29,5 +29,12 @@ "psr-4": { "Dingo\\Blueprint\\Tests\\": "tests" } - } + }, + "extra": { + "branch-alias": { + "dev-master": "0.2-dev" + } + }, + "minimum-stability": "dev", + "prefer-stable": true }