This commit is contained in:
mkm 2024-02-28 16:51:38 +08:00
parent 4b9c717ec6
commit baeefd5c35
7897 changed files with 162168 additions and 334250 deletions

0
vendor/adbario/php-dot-notation/LICENSE.md vendored Executable file → Normal file
View File

6
vendor/adbario/php-dot-notation/composer.json vendored Executable file → Normal file
View File

@ -11,12 +11,12 @@
}
],
"require": {
"php": "^5.5 || ^7.0 || ^8.0",
"php": ">=5.5",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
"squizlabs/php_codesniffer": "^3.6"
"phpunit/phpunit": "^4.0|^5.0|^6.0",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"files": [

34
vendor/adbario/php-dot-notation/src/Dot.php vendored Executable file → Normal file
View File

@ -29,25 +29,14 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
*/
protected $items = [];
/**
* The delimiter (alternative to a '.') to be used.
*
* @var string
*/
protected $delimiter = '.';
/**
* Create a new Dot instance
*
* @param mixed $items
* @param string $delimiter
*/
public function __construct($items = [], $delimiter = '.')
public function __construct($items = [])
{
$this->items = $this->getArrayItems($items);
$this->delimiter = strlen($delimiter) ? $delimiter : '.';
}
/**
@ -115,7 +104,7 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
}
$items = &$this->items;
$segments = explode($this->delimiter, $key);
$segments = explode('.', $key);
$lastSegment = array_pop($segments);
foreach ($segments as $segment) {
@ -159,10 +148,6 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
$items = $this->items;
}
if (!func_num_args()) {
$delimiter = $this->delimiter;
}
foreach ($items as $key => $value) {
if (is_array($value) && !empty($value)) {
$flatten = array_merge(
@ -194,13 +179,13 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
return $this->items[$key];
}
if (strpos($key, $this->delimiter) === false) {
if (strpos($key, '.') === false) {
return $default;
}
$items = $this->items;
foreach (explode($this->delimiter, $key) as $segment) {
foreach (explode('.', $key) as $segment) {
if (!is_array($items) || !$this->exists($items, $segment)) {
return $default;
}
@ -249,7 +234,7 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
continue;
}
foreach (explode($this->delimiter, $key) as $segment) {
foreach (explode('.', $key) as $segment) {
if (!is_array($items) || !$this->exists($items, $segment)) {
return false;
}
@ -461,7 +446,7 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
$items = &$this->items;
foreach (explode($this->delimiter, $keys) as $key) {
foreach (explode('.', $keys) as $key) {
if (!isset($items[$key]) || !is_array($items[$key])) {
$items[$key] = [];
}
@ -522,7 +507,6 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
* @param int|string $key
* @return bool
*/
#[\ReturnTypeWillChange]
public function offsetExists($key)
{
return $this->has($key);
@ -534,7 +518,6 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
* @param int|string $key
* @return mixed
*/
#[\ReturnTypeWillChange]
public function offsetGet($key)
{
return $this->get($key);
@ -546,7 +529,6 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
* @param int|string|null $key
* @param mixed $value
*/
#[\ReturnTypeWillChange]
public function offsetSet($key, $value)
{
if (is_null($key)) {
@ -563,7 +545,6 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
*
* @param int|string $key
*/
#[\ReturnTypeWillChange]
public function offsetUnset($key)
{
$this->delete($key);
@ -581,7 +562,6 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
* @param int|string|null $key
* @return int
*/
#[\ReturnTypeWillChange]
public function count($key = null)
{
return count($this->get($key));
@ -598,7 +578,6 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
*
* @return \ArrayIterator
*/
#[\ReturnTypeWillChange]
public function getIterator()
{
return new ArrayIterator($this->items);
@ -615,7 +594,6 @@ class Dot implements ArrayAccess, Countable, IteratorAggregate, JsonSerializable
*
* @return array
*/
#[\ReturnTypeWillChange]
public function jsonSerialize()
{
return $this->items;

7
vendor/adbario/php-dot-notation/src/helpers.php vendored Executable file → Normal file
View File

@ -11,14 +11,13 @@ use Adbar\Dot;
if (! function_exists('dot')) {
/**
* Create a new Dot object with the given items and optional delimiter
* Create a new Dot object with the given items
*
* @param mixed $items
* @param string $delimiter
* @return \Adbar\Dot
*/
function dot($items, $delimiter = '.')
function dot($items)
{
return new Dot($items, $delimiter);
return new Dot($items);
}
}

0
vendor/alibabacloud/credentials/CHANGELOG.md vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/CONTRIBUTING.md vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/LICENSE.md vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/NOTICE.md vendored Executable file → Normal file
View File

2
vendor/alibabacloud/credentials/README-zh-CN.md vendored Executable file → Normal file
View File

@ -149,7 +149,7 @@ $rsaKeyPair->getPrivateKey();
use AlibabaCloud\Credentials\Credential;
$bearerToken = new Credential([
'type' => 'bearer',
'type' => 'bearer_token',
'bearer_token' => '<bearer_token>',
]);
$bearerToken->getBearerToken();

2
vendor/alibabacloud/credentials/README.md vendored Executable file → Normal file
View File

@ -150,7 +150,7 @@ If credential is required by the Cloud Call Centre (CCC), please apply for Beare
use AlibabaCloud\Credentials\Credential;
$bearerToken = new Credential([
'type' => 'bearer',
'type' => 'bearer_token',
'bearer_token' => '<bearer_token>',
]);
$bearerToken->getBearerToken();

0
vendor/alibabacloud/credentials/SECURITY.md vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/UPGRADING.md vendored Executable file → Normal file
View File

7
vendor/alibabacloud/credentials/composer.json vendored Executable file → Normal file
View File

@ -47,7 +47,7 @@
"ext-sockets": "*",
"drupal/coder": "^8.3",
"symfony/dotenv": "^3.4",
"phpunit/phpunit": "^5.7|^6.6|^7.5",
"phpunit/phpunit": "^4.8.35|^5.4.3",
"monolog/monolog": "^1.24",
"composer/composer": "^1.8",
"mikey179/vfsstream": "^1.6",
@ -68,10 +68,7 @@
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true,

0
vendor/alibabacloud/credentials/src/AccessKeyCredential.php vendored Executable file → Normal file
View File

8
vendor/alibabacloud/credentials/src/BearerTokenCredential.php vendored Executable file → Normal file
View File

@ -18,13 +18,13 @@ class BearerTokenCredential implements CredentialsInterface
/**
* BearerTokenCredential constructor.
*
* @param $bearer_token
* @param $bearerToken
*/
public function __construct($bearer_token)
public function __construct($bearerToken)
{
Filter::bearerToken($bearer_token);
Filter::bearerToken($bearerToken);
$this->bearerToken = $bearer_token;
$this->bearerToken = $bearerToken;
}
/**

1
vendor/alibabacloud/credentials/src/Credential.php vendored Executable file → Normal file
View File

@ -35,7 +35,6 @@ class Credential
'ecs_ram_role' => EcsRamRoleCredential::class,
'ram_role_arn' => RamRoleArnCredential::class,
'rsa_key_pair' => RsaKeyPairCredential::class,
'bearer' => BearerTokenCredential::class,
];
/**

0
vendor/alibabacloud/credentials/src/Credential/Config.php vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/src/Credentials.php vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/src/CredentialsInterface.php vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/src/EcsRamRoleCredential.php vendored Executable file → Normal file
View File

4
vendor/alibabacloud/credentials/src/Filter.php vendored Executable file → Normal file
View File

@ -35,11 +35,11 @@ class Filter
public static function bearerToken($bearerToken)
{
if (!is_string($bearerToken)) {
throw new InvalidArgumentException('bearer_token must be a string');
throw new InvalidArgumentException('Bearer Token must be a string');
}
if ($bearerToken === '') {
throw new InvalidArgumentException('bearer_token cannot be empty');
throw new InvalidArgumentException('Bearer Token cannot be empty');
}
return $bearerToken;

0
vendor/alibabacloud/credentials/src/Helper.php vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/src/MockTrait.php vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/src/Providers/ChainProvider.php vendored Executable file → Normal file
View File

View File

0
vendor/alibabacloud/credentials/src/Providers/Provider.php vendored Executable file → Normal file
View File

View File

View File

0
vendor/alibabacloud/credentials/src/RamRoleArnCredential.php vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/src/Request/AssumeRole.php vendored Executable file → Normal file
View File

View File

0
vendor/alibabacloud/credentials/src/Request/Request.php vendored Executable file → Normal file
View File

0
vendor/alibabacloud/credentials/src/RsaKeyPairCredential.php vendored Executable file → Normal file
View File

View File

0
vendor/alibabacloud/credentials/src/Signature/ShaHmac1Signature.php vendored Executable file → Normal file
View File

View File

View File

View File

0
vendor/alibabacloud/credentials/src/StsCredential.php vendored Executable file → Normal file
View File

0
vendor/alibabacloud/darabonba-openapi/.gitignore vendored Executable file → Normal file
View File

0
vendor/alibabacloud/darabonba-openapi/.php_cs.dist vendored Executable file → Normal file
View File

0
vendor/alibabacloud/darabonba-openapi/README-CN.md vendored Executable file → Normal file
View File

0
vendor/alibabacloud/darabonba-openapi/README.md vendored Executable file → Normal file
View File

0
vendor/alibabacloud/darabonba-openapi/autoload.php vendored Executable file → Normal file
View File

7
vendor/alibabacloud/darabonba-openapi/composer.json vendored Executable file → Normal file
View File

@ -11,11 +11,10 @@
],
"require": {
"php": ">5.5",
"alibabacloud/tea-utils": "^0.2.17",
"alibabacloud/tea-utils": "^0.2.0",
"alibabacloud/credentials": "^1.1",
"alibabacloud/openapi-util": "^0.1.10|^0.2.1",
"alibabacloud/gateway-spi": "^1",
"alibabacloud/tea-xml": "^0.2"
"alibabacloud/openapi-util": "^0.1.10",
"alibabacloud/gateway-spi": "^0.0.1"
},
"autoload": {
"psr-4": {

116
vendor/alibabacloud/darabonba-openapi/src/Models/Config.php vendored Executable file → Normal file
View File

@ -1,15 +1,14 @@
<?php
// This file is auto-generated, don't edit it. Thanks.
namespace Darabonba\OpenApi\Models;
use AlibabaCloud\Tea\Model;
use AlibabaCloud\Credentials\Credential;
use Darabonba\OpenApi\Models\GlobalParameters;
use AlibabaCloud\Tea\Model;
/**
* Model for initing client
* Model for initing client.
*/
class Config extends Model
{
@ -38,13 +37,12 @@ class Config extends Model
'type' => '',
'signatureVersion' => '',
'signatureAlgorithm' => '',
'key' => '',
'cert' => '',
'ca' => '',
];
public function validate()
{
}
public function toMap()
{
$res = [];
@ -120,22 +118,13 @@ class Config extends Model
if (null !== $this->signatureAlgorithm) {
$res['signatureAlgorithm'] = $this->signatureAlgorithm;
}
if (null !== $this->globalParameters) {
$res['globalParameters'] = null !== $this->globalParameters ? $this->globalParameters->toMap() : null;
}
if (null !== $this->key) {
$res['key'] = $this->key;
}
if (null !== $this->cert) {
$res['cert'] = $this->cert;
}
if (null !== $this->ca) {
$res['ca'] = $this->ca;
}
return $res;
}
/**
* @param array $map
*
* @return Config
*/
public static function fromMap($map = [])
@ -213,212 +202,219 @@ class Config extends Model
if (isset($map['signatureAlgorithm'])) {
$model->signatureAlgorithm = $map['signatureAlgorithm'];
}
if (isset($map['globalParameters'])) {
$model->globalParameters = GlobalParameters::fromMap($map['globalParameters']);
}
if (isset($map['key'])) {
$model->key = $map['key'];
}
if (isset($map['cert'])) {
$model->cert = $map['cert'];
}
if (isset($map['ca'])) {
$model->ca = $map['ca'];
}
return $model;
}
/**
* @description accesskey id
*
* @var string
*/
public $accessKeyId;
/**
* @description accesskey secret
*
* @var string
*/
public $accessKeySecret;
/**
* @description security token
*
* @example a.txt
*
* @var string
*/
public $securityToken;
/**
* @description http protocol
*
* @example http
*
* @var string
*/
public $protocol;
/**
* @description http method
*
* @example GET
*
* @var string
*/
public $method;
/**
* @description region id
*
* @example cn-hangzhou
*
* @var string
*/
public $regionId;
/**
* @description read timeout
*
* @example 10
*
* @var int
*/
public $readTimeout;
/**
* @description connect timeout
*
* @example 10
*
* @var int
*/
public $connectTimeout;
/**
* @description http proxy
*
* @example http://localhost
*
* @var string
*/
public $httpProxy;
/**
* @description https proxy
*
* @example https://localhost
*
* @var string
*/
public $httpsProxy;
/**
* @description credential
*
* @example
*
* @var Credential
*/
public $credential;
/**
* @description endpoint
*
* @example cs.aliyuncs.com
*
* @var string
*/
public $endpoint;
/**
* @description proxy white list
*
* @example http://localhost
*
* @var string
*/
public $noProxy;
/**
* @description max idle conns
*
* @example 3
*
* @var int
*/
public $maxIdleConns;
/**
* @description network for endpoint
*
* @example public
*
* @var string
*/
public $network;
/**
* @description user agent
*
* @example Alibabacloud/1
*
* @var string
*/
public $userAgent;
/**
* @description suffix for endpoint
*
* @example aliyun
*
* @var string
*/
public $suffix;
/**
* @description socks5 proxy
*
* @var string
*/
public $socks5Proxy;
/**
* @description socks5 network
*
* @example TCP
*
* @var string
*/
public $socks5NetWork;
/**
* @description endpoint type
*
* @example internal
*
* @var string
*/
public $endpointType;
/**
* @description OpenPlatform endpoint
*
* @example openplatform.aliyuncs.com
*
* @var string
*/
public $openPlatformEndpoint;
/**
* @description credential type
*
* @example access_key
*
* @deprecated
*
* @var string
*/
public $type;
/**
* @description Signature Version
*
* @example v1
*
* @var string
*/
public $signatureVersion;
/**
* @description Signature Algorithm
*
* @example ACS3-HMAC-SHA256
*
* @var string
*/
public $signatureAlgorithm;
/**
* @description Global Parameters
* @var GlobalParameters
*/
public $globalParameters;
/**
* @description privite key for client certificate
* @example MIIEvQ
* @var string
*/
public $key;
/**
* @description client certificate
* @example -----BEGIN CERTIFICATE-----
xxx-----END CERTIFICATE-----
* @var string
*/
public $cert;
/**
* @description server certificate
* @example -----BEGIN CERTIFICATE-----
xxx-----END CERTIFICATE-----
* @var string
*/
public $ca;
}

View File

@ -1,42 +0,0 @@
<?php
// This file is auto-generated, don't edit it. Thanks.
namespace Darabonba\OpenApi\Models;
use AlibabaCloud\Tea\Model;
class GlobalParameters extends Model
{
public function validate()
{
}
public function toMap()
{
$res = [];
if (null !== $this->headers) {
$res['headers'] = $this->headers;
}
if (null !== $this->queries) {
$res['queries'] = $this->queries;
}
return $res;
}
/**
* @param array $map
* @return GlobalParameters
*/
public static function fromMap($map = [])
{
$model = new self();
if (isset($map['headers'])) {
$model->headers = $map['headers'];
}
if (isset($map['queries'])) {
$model->queries = $map['queries'];
}
return $model;
}
public $headers;
public $queries;
}

15
vendor/alibabacloud/darabonba-openapi/src/Models/OpenApiRequest.php vendored Executable file → Normal file
View File

@ -1,6 +1,7 @@
<?php
// This file is auto-generated, don't edit it. Thanks.
namespace Darabonba\OpenApi\Models;
use AlibabaCloud\Tea\Model;
@ -10,6 +11,7 @@ class OpenApiRequest extends Model
public function validate()
{
}
public function toMap()
{
$res = [];
@ -28,13 +30,13 @@ class OpenApiRequest extends Model
if (null !== $this->hostMap) {
$res['hostMap'] = $this->hostMap;
}
if (null !== $this->endpointOverride) {
$res['endpointOverride'] = $this->endpointOverride;
}
return $res;
}
/**
* @param array $map
*
* @return OpenApiRequest
*/
public static function fromMap($map = [])
@ -55,11 +57,10 @@ class OpenApiRequest extends Model
if (isset($map['hostMap'])) {
$model->hostMap = $map['hostMap'];
}
if (isset($map['endpointOverride'])) {
$model->endpointOverride = $map['endpointOverride'];
}
return $model;
}
public $headers;
public $query;
@ -69,6 +70,4 @@ class OpenApiRequest extends Model
public $stream;
public $hostMap;
public $endpointOverride;
}

7
vendor/alibabacloud/darabonba-openapi/src/Models/Params.php vendored Executable file → Normal file
View File

@ -1,6 +1,7 @@
<?php
// This file is auto-generated, don't edit it. Thanks.
namespace Darabonba\OpenApi\Models;
use AlibabaCloud\Tea\Model;
@ -18,6 +19,7 @@ class Params extends Model
Model::validateRequired('bodyType', $this->bodyType, true);
Model::validateRequired('reqBodyType', $this->reqBodyType, true);
}
public function toMap()
{
$res = [];
@ -48,10 +50,13 @@ class Params extends Model
if (null !== $this->style) {
$res['style'] = $this->style;
}
return $res;
}
/**
* @param array $map
*
* @return Params
*/
public static function fromMap($map = [])
@ -84,8 +89,10 @@ class Params extends Model
if (isset($map['style'])) {
$model->style = $map['style'];
}
return $model;
}
/**
* @var string
*/

877
vendor/alibabacloud/darabonba-openapi/src/OpenApiClient.php vendored Executable file → Normal file

File diff suppressed because it is too large Load Diff

0
vendor/alibabacloud/dysmsapi-20170525/.gitignore vendored Executable file → Normal file
View File

0
vendor/alibabacloud/dysmsapi-20170525/.php_cs.dist vendored Executable file → Normal file
View File

0
vendor/alibabacloud/dysmsapi-20170525/ChangeLog.md vendored Executable file → Normal file
View File

0
vendor/alibabacloud/dysmsapi-20170525/README-CN.md vendored Executable file → Normal file
View File

0
vendor/alibabacloud/dysmsapi-20170525/README.md vendored Executable file → Normal file
View File

0
vendor/alibabacloud/dysmsapi-20170525/autoload.php vendored Executable file → Normal file
View File

0
vendor/alibabacloud/dysmsapi-20170525/composer.json vendored Executable file → Normal file
View File

0
vendor/alibabacloud/dysmsapi-20170525/src/Dysmsapi.php vendored Executable file → Normal file
View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

Some files were not shown because too many files have changed in this diff Show More