From bb1e7b0f686b1328f4d7c1f8ccd934438588fc08 Mon Sep 17 00:00:00 2001 From: Matteo Formenti <7093527+matteoformenti@users.noreply.github.com> Date: Thu, 12 Dec 2019 17:49:13 +0100 Subject: [PATCH] Fix Laravel 6 Semver Fixed require for illuminate that forces laravel version up to 6.0, with laravel 6 comes semver. Laravel won't publish breaking code in the 6.x branch --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index d36f01e..da2f5c5 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ "php": "^7.2", "league/csv": "~9.0", "mustangostang/spyc": "~0.6", - "illuminate/support": "^6.0" + "illuminate/support": "^6" }, "require-dev": { "phpunit/phpunit": "~8.0"