From cf0c27500710597476a5ebb825d629b003b080f1 Mon Sep 17 00:00:00 2001 From: Jason Beggs Date: Fri, 6 Sep 2019 13:58:15 -0400 Subject: [PATCH 1/2] Add Laravel 6.0 support --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 523fec0..19c84fa 100644 --- a/composer.json +++ b/composer.json @@ -4,10 +4,10 @@ "type": "library", "require": { "php": ">=7.1.3", - "illuminate/support": "^5.6", - "illuminate/container": "^5.6", - "illuminate/database": "^5.6", - "illuminate/events": "^5.6" + "illuminate/support": "^5.6 || ^6.0", + "illuminate/container": "^5.6 || ^6.0", + "illuminate/database": "^5.6 || ^6.0", + "illuminate/events": "^5.6 || ^6.0", }, "require-dev": { "phpunit/phpunit": "~7.0", From 1fd2468a0534a14b7995ca2a5d51f7277d60f714 Mon Sep 17 00:00:00 2001 From: Jason Beggs Date: Fri, 6 Sep 2019 14:01:23 -0400 Subject: [PATCH 2/2] Remove trailing comma --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 19c84fa..511720c 100644 --- a/composer.json +++ b/composer.json @@ -7,7 +7,7 @@ "illuminate/support": "^5.6 || ^6.0", "illuminate/container": "^5.6 || ^6.0", "illuminate/database": "^5.6 || ^6.0", - "illuminate/events": "^5.6 || ^6.0", + "illuminate/events": "^5.6 || ^6.0" }, "require-dev": { "phpunit/phpunit": "~7.0",