From 14c8fdd691f1cfe2e7f80e5e2e56d64017036e7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20=C5=A0korpil?= Date: Thu, 5 Dec 2019 09:01:28 +0100 Subject: [PATCH 1/2] Update base URL --- src/Client.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Client.php b/src/Client.php index 34832d3..d0147b1 100644 --- a/src/Client.php +++ b/src/Client.php @@ -14,16 +14,16 @@ class Client { /** @var string */ - public static $sendMessageUrl = 'https://smsgateapi.sluzba.cz/apixml30/receiver'; + public static $sendMessageUrl = 'https://smsgateapi.sms-sluzba.cz/apixml30/receiver'; /** @var string */ - public static $deliveryMessageUrl = 'https://smsgateapi.sluzba.cz/apixml30/sender'; + public static $deliveryMessageUrl = 'https://smsgateapi.sms-sluzba.cz/apixml30/sender'; /** @var string */ - public static $confirmMessageUrl = 'https://smsgateapi.sluzba.cz/apixml30/confirm'; + public static $confirmMessageUrl = 'https://smsgateapi.sms-sluzba.cz/apixml30/confirm'; /** @var string */ - public static $infoUrl = 'https://smsgateapi.sluzba.cz/apixml30/info/credit'; + public static $infoUrl = 'https://smsgateapi.sms-sluzba.cz/apixml30/info/credit'; /** @var ClientInterface */ private $guzzleClient; From 301df76ec1ea499cb5d1f60d03ddc6b689ad7e68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20=C5=A0korpil?= Date: Thu, 5 Dec 2019 09:02:02 +0100 Subject: [PATCH 2/2] Upgrade dependencies --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index c25409c..eb4e130 100644 --- a/composer.json +++ b/composer.json @@ -15,7 +15,7 @@ } }, "require": { - "guzzlehttp/guzzle": "~5.3.0" + "guzzlehttp/guzzle": "~5.3.0||^6.0" }, "require-dev": { "nette/tester": "^1.7"