From 48f351ac397990577ce0ac1c3156c7f5d258f7fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rube=CC=81n=20Robles?= Date: Fri, 6 Mar 2020 10:13:07 +0000 Subject: [PATCH 1/2] Upgrade to monolog v2 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 2e8dc56b..396e12f9 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ "justinrainbow/json-schema": "^1.6 || ^2.0 || ^4.0 || ^5.0", "lastguest/murmurhash": "1.3.0", "guzzlehttp/guzzle": "~5.3|~6.2", - "monolog/monolog": "~1.21", + "monolog/monolog": "^2.0", "icecave/parity": "^1.0 || ^2.0" }, "require-dev": { From 4986e189698d63856419ec5ef9ac600a14e99789 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rube=CC=81n=20Robles?= Date: Fri, 6 Mar 2020 10:40:32 +0000 Subject: [PATCH 2/2] Update PHP minimum version required --- .travis.yml | 6 +----- composer.json | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index c747b3ff..b11580f8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,6 @@ language: php dist: trusty php: - - '5.5' - - '5.6' - - '7.0' - - '7.1' - '7.2' - '7.3' install: "composer install" @@ -26,7 +22,7 @@ jobs: include: - stage: 'Linting' language: php - php: '7.0' + php: '7.2' install: 'composer require "squizlabs/php_codesniffer=*"' script: 'composer lint' after_script: skip diff --git a/composer.json b/composer.json index 396e12f9..f5a00ec6 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ "beautify": "phpcbf" }, "require": { - "php": ">=5.5", + "php": ">=7.2", "justinrainbow/json-schema": "^1.6 || ^2.0 || ^4.0 || ^5.0", "lastguest/murmurhash": "1.3.0", "guzzlehttp/guzzle": "~5.3|~6.2",