From f5062d22b17cc61d80bc58d6b938279bd2ae5072 Mon Sep 17 00:00:00 2001 From: Daniel Heyne Date: Wed, 15 Aug 2018 17:06:38 +0200 Subject: [PATCH 1/2] Update composer.json to support Laravel 5.5 and 5.6. --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 6d4d862..ec63939 100644 --- a/composer.json +++ b/composer.json @@ -10,9 +10,9 @@ } ], "require": { - "php": ">=5.6", - "illuminate/log": "5.2.*|5.3.*|5.4.*", - "illuminate/support": "5.2.*|5.3.*|5.4.*", + "php": "^7.1.3", + "illuminate/log": "5.2.*|5.3.*|5.4.*|5.5.*|5.6.*", + "illuminate/support": "5.2.*|5.3.*|5.4.*|5.5.*|5.6.*", "influxdb/influxdb-php": "1.14.*", "monolog/monolog": "^1.19" }, From 50460824cb44ca42ded547019287e2dbaac5382c Mon Sep 17 00:00:00 2001 From: Daniel Heyne Date: Thu, 16 Aug 2018 10:09:27 +0200 Subject: [PATCH 2/2] Accept PHP 5 and 7. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index ec63939..e4af5c9 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ } ], "require": { - "php": "^7.1.3", + "php": "^5.6 || ^7.0 || ^7.1.3", "illuminate/log": "5.2.*|5.3.*|5.4.*|5.5.*|5.6.*", "illuminate/support": "5.2.*|5.3.*|5.4.*|5.5.*|5.6.*", "influxdb/influxdb-php": "1.14.*",