Attendize/config/payment.php

24 lines
506 B
PHP
Raw Normal View History

2019-08-16 13:04:50 +00:00
<?php
/**
* Created by PhpStorm.
* User: merdan
* Date: 8/15/2019
* Time: 17:56
*/
return [
'card' =>[
'config' => [
2020-01-21 12:31:05 +00:00
'base_uri' => env('PAYMENT_API_URI'),
2019-08-16 13:04:50 +00:00
'timeout' => 10,
'connect_timeout' => 10,
'verify' => true,
'http_errors' => false,
],
'params' => [
2020-01-21 12:31:05 +00:00
'userName' => env('PAYMENT_API_USER'),
'password' => env('PAYMENT_API_PASSWORD'),
2019-08-16 13:04:50 +00:00
'language' => 'ru',
]
]
2020-01-21 12:31:05 +00:00
];