22 lines
432 B
PHP
22 lines
432 B
PHP
<?php
|
|
|
|
namespace Yeepay\Yop\Sdk\Utils;
|
|
|
|
class YopConstants
|
|
{
|
|
|
|
const LANG = 'php';
|
|
|
|
const VERSION = "3.2.24";
|
|
|
|
const DEFAULT_ENCODING = "UTF-8";
|
|
|
|
const DEFAULT_SERVER_ROOT = "https://openapi.yeepay.com/yop-center";
|
|
|
|
const DEFAULT_YOS_SERVER_ROOT = "https://yos.yeepay.com/yop-center";
|
|
|
|
const DEFAULT_SANDBOX_SERVER_ROOT = "https://sandbox.yeepay.com/yop-center";
|
|
|
|
const DEFAULT_SANDBOX_VIA = "sandbox";
|
|
|
|
} |