Compare commits

..

2 commits
1.0.0 ... main

Author SHA1 Message Date
yggverse
597a105be7 update default options 2024-08-03 02:17:26 +03:00
yggverse
acad5e14cc fix query format 2024-07-08 04:36:04 +03:00

View file

@ -17,8 +17,10 @@ class Request
[
'ssl' =>
[
'verify_peer' => false,
'verify_peer_name' => false
'allow_self_signed' => true,
'disable_compression' => true,
'verify_peer_name' => false,
'verify_peer' => false
]
];
@ -184,7 +186,10 @@ class Request
$this->_host,
$this->_port,
$this->_path,
$this->_query
$this->_query ? sprintf(
'?%s',
$this->_query
) : null
)
);