From b0b1bd9d91ad038e5d4fce0ba34c3e671f522c27 Mon Sep 17 00:00:00 2001 From: Nick Ufer Date: Wed, 19 Feb 2020 14:51:05 +0100 Subject: [PATCH] Adds monolog/monolog as dependency --- composer.json | 61 ++++++++++++++++++++++++++------------------------- 1 file changed, 31 insertions(+), 30 deletions(-) diff --git a/composer.json b/composer.json index dfbbb9e..5a7d110 100644 --- a/composer.json +++ b/composer.json @@ -1,30 +1,31 @@ -{ - "name": "inwx/domrobot", - "description": "PHP Client to easily use the Domrobot API of INWX", - "license": "MIT", - "homepage": "https://www.inwx.com/en/", - "support": { - "docs": "https://www.inwx.com/en/help/apidoc", - "email": "support@inwx.de", - "source": "https://github.com/inwx/php-client" - }, - "authors": [ - { - "name": "INWX", - "email": "support@inwx.de" - } - ], - "require": { - "php": ">=7.2", - "ext-curl": "*" - }, - "autoload": { - "psr-4": { - "INWX\\": "src/" - } - }, - "suggest": { - "ext-xmlrpc": "Needed to use the XML-RPC API", - "ext-json": "Needed to use the JSON-RPC API" - } -} +{ + "name": "inwx/domrobot", + "description": "PHP Client to easily use the Domrobot API of INWX", + "license": "MIT", + "homepage": "https://www.inwx.com/en/", + "support": { + "docs": "https://www.inwx.com/en/help/apidoc", + "email": "support@inwx.de", + "source": "https://github.com/inwx/php-client" + }, + "authors": [ + { + "name": "INWX", + "email": "support@inwx.de" + } + ], + "require": { + "php": ">=7.2", + "ext-curl": "*", + "monolog/monolog": ">= 2.0.0" + }, + "autoload": { + "psr-4": { + "INWX\\": "src/" + } + }, + "suggest": { + "ext-xmlrpc": "Needed to use the XML-RPC API", + "ext-json": "Needed to use the JSON-RPC API" + } +}