FIX: Si no conecta con Nubox solo se reajusta el terreno.
This commit is contained in:
@ -69,7 +69,18 @@ return [
|
||||
$container->get(Psr\Log\LoggerInterface::class),
|
||||
$container->get(Incoviba\Repository\Contabilidad\Nubox::class),
|
||||
$container->get(Incoviba\Service\Redis::class),
|
||||
new GuzzleHttp\Client(),
|
||||
new GuzzleHttp\Client([
|
||||
'defaults' => [
|
||||
'config' => [
|
||||
'curl' => [
|
||||
CURLOPT_SSL_VERIFYPEER => false,
|
||||
CURLOPT_SSL_VERIFYHOST => false,
|
||||
CURLOPT_SSLVERSION => CURL_SSLVERSION_TLSv1_3
|
||||
],
|
||||
'verify' => false
|
||||
]
|
||||
],
|
||||
]),
|
||||
$container->get(Psr\Http\Message\RequestFactoryInterface::class),
|
||||
$container->get('nubox')->get('url'));
|
||||
},
|
||||
|
Reference in New Issue
Block a user