香洲二院小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mini_xzey/config/hisservice.php

29 lines
903 B

<?php
return [
// HIS SOAP 服务
'his_soap' => [
'url' => '',
'location' => '',
'service_type_namespace' => 'HisSoapService\ServiceType\\',
'struct_type_namespace' => 'HisSoapService\StructType\\',
// 不记录日志的请求数组
'not_log_arr' => [],
// 是否模拟数据
'is_mock' => true,
],
// HIS API服务 -- 方鼎中间件转发
'his_api' => [
// 测试地址
'url' => 'http://192.168.61.45:8809/api/WeChatDomain/',
// 不记录日志的请求数组
'not_log_arr' => [''],
// 是否模拟数据
'is_mock' => true,
// guzzle/client options
'options' => [
'timeout' => 60
]
]
];