From 9eae6dc5ad5e9a63e00d3425c90da741d64c8e99 Mon Sep 17 00:00:00 2001 From: Michele Angioni Date: Sat, 9 Mar 2019 12:37:13 +0100 Subject: [PATCH] Maximum illuminate packages supported version is not 5.7, to avoid breaking changes of 5.8 --- composer.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index 1cbab3b..3a03fc6 100644 --- a/composer.json +++ b/composer.json @@ -12,12 +12,12 @@ ], "require": { "php": ">=7.1.0 <8.0.0", - "illuminate/cache": "~5.4", - "illuminate/console": "~5.4", - "illuminate/database": "~5.4", - "illuminate/pagination": "~5.4", - "illuminate/support": "~5.4", - "illuminate/validation": "~5.4" + "illuminate/cache": "5.4|5.5|5.6|5.7", + "illuminate/console": "5.4|5.5|5.6|5.7", + "illuminate/database": "5.4|5.5|5.6|5.7", + "illuminate/pagination": "5.4|5.5|5.6|5.7", + "illuminate/support": "5.4|5.5|5.6|5.7", + "illuminate/validation": "5.4|5.5|5.6|5.7" }, "require-dev": { "mockery/mockery": "^0.9",