From 77ff95ae8bc8adbe23f25285b1ed76c3d71cbf99 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 11 Jul 2017 17:55:27 +0000 Subject: [PATCH 1/3] use tolerance 1.0 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 0a76cf6..bf8a748 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,7 @@ "require": { "php": ">=5.6.4", "illuminate/support": "*", - "tolerance/tolerance": "^0.3.3" + "tolerance/tolerance": "^1.0.0" }, "require-dev": { From 18928006bda4d623def6f721274c79065f2644fa Mon Sep 17 00:00:00 2001 From: root Date: Fri, 15 Sep 2017 07:38:26 +0000 Subject: [PATCH 2/3] add support to self signed certificate --- src/Vinelab/Http/Request.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Vinelab/Http/Request.php b/src/Vinelab/Http/Request.php index 3e672a9..121818b 100644 --- a/src/Vinelab/Http/Request.php +++ b/src/Vinelab/Http/Request.php @@ -177,6 +177,8 @@ public function send() CURLOPT_MAXREDIRS => $this->maxRedirects, CURLOPT_TIMEOUT => $this->timeout, CURLOPT_RETURNTRANSFER => true, + CURLOPT_SSL_VERIFYPEER=>false, + CURLOPT_SSL_VERIFYHOST=>false ); //digest auth support From 868b735f140be4997b6ddc343deb059c38c0366f Mon Sep 17 00:00:00 2001 From: ibrahim Date: Fri, 15 Sep 2017 10:44:32 +0300 Subject: [PATCH 3/3] use dev master --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index bf8a748..1e30b3f 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,7 @@ "require": { "php": ">=5.6.4", "illuminate/support": "*", - "tolerance/tolerance": "^1.0.0" + "tolerance/tolerance": "dev-master" }, "require-dev": {