From 78c321be9da1a19d4bbb7f10d8c7a0f09115f3d5 Mon Sep 17 00:00:00 2001 From: Shivam Paw Date: Tue, 15 Oct 2019 15:39:04 +0100 Subject: [PATCH] Update illuminate/support version restraint Changed it so that anything above 5.0.0 is acceptable. The likelihood of a Laravel version bringing a breaking change for this package is extremely low and this saves adding a new version constraint every 6 months to follow semver. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 77fa7a0..3413b93 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ ], "require": { "php": ">=5.4.0", - "illuminate/support": "~5.0|^6.0" + "illuminate/support": ">=5.0.0" }, "require-dev": { "mockery/mockery": "dev-master",