From e0dd8e3abdbdbb1fc10b257b9aaf73193843ec92 Mon Sep 17 00:00:00 2001 From: Andras Iklody Date: Thu, 5 Sep 2019 10:07:19 +0200 Subject: [PATCH 1/2] Fix monolog version As indicated here: https://github.com/MISP/MISP/issues/5085 it sounds like monolog is no longer backwards compatible with the expected versions, the fix suggested here by @GelosSnake : https://github.com/MISP/MISP/issues/5085#issuecomment-528059408 Should lock the version to one that is known to work. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index b8203be..ea38bcb 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ "require": { "php": ">=5.3.0", "ext-pcntl": "*", - "monolog/monolog": ">=1.2.0", + "monolog/monolog": "=1.24.0", "kamisama/monolog-init": ">=0.1.1" }, "autoload": { From e8e1d434cf5f82b1981b8157221207a6f072750a Mon Sep 17 00:00:00 2001 From: Andras Iklody Date: Thu, 5 Sep 2019 10:09:40 +0200 Subject: [PATCH 2/2] typo --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index ea38bcb..5c75929 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ "require": { "php": ">=5.3.0", "ext-pcntl": "*", - "monolog/monolog": "=1.24.0", + "monolog/monolog": "1.24.0", "kamisama/monolog-init": ">=0.1.1" }, "autoload": {