Skip to content

Commit fcedc0b

Browse files
committed
Update API GetSmsTemplate: add response parameters Body.VendorAuditStatus.
1 parent 5a301a0 commit fcedc0b

File tree

190 files changed

+7733
-6968
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

190 files changed

+7733
-6968
lines changed
Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
<?php
2+
23
/*
34
* This document has been generated with
45
* https://mlocati.github.io/php-cs-fixer-configurator/#version:2.15|configurator
56
* you can change this configuration by importing this file.
67
*/
78

8-
return PhpCsFixer\Config::create()
9+
use PhpCsFixer\Config;
10+
use PhpCsFixer\Finder;
11+
12+
return (new Config())
913
->setRiskyAllowed(true)
1014
->setIndent(' ')
1115
->setRules([
@@ -16,14 +20,12 @@
1620
'array_syntax' => ['syntax' => 'short'],
1721
'array_indentation' => true,
1822
'combine_consecutive_unsets' => true,
19-
'method_separation' => true,
23+
'phpdoc_separation' => true,
2024
'single_quote' => true,
2125
'declare_equal_normalize' => true,
2226
'function_typehint_space' => true,
23-
'hash_to_slash_comment' => true,
2427
'include' => true,
2528
'lowercase_cast' => true,
26-
'no_multiline_whitespace_before_semicolons' => true,
2729
'no_leading_import_slash' => true,
2830
'no_multiline_whitespace_around_double_arrow' => true,
2931
'no_spaces_around_offset' => true,
@@ -32,34 +34,33 @@
3234
'no_whitespace_before_comma_in_array' => true,
3335
'no_whitespace_in_blank_line' => true,
3436
'object_operator_without_whitespace' => true,
35-
'single_blank_line_before_namespace' => true,
37+
'blank_lines_before_namespace' => true,
3638
'single_class_element_per_statement' => true,
3739
'space_after_semicolon' => true,
3840
'standardize_not_equals' => true,
3941
'ternary_operator_spaces' => true,
40-
'trailing_comma_in_multiline_array' => true,
42+
'trailing_comma_in_multiline' => true,
4143
'trim_array_spaces' => true,
4244
'unary_operator_spaces' => true,
4345
'whitespace_after_comma_in_array' => true,
44-
'no_extra_consecutive_blank_lines' => [
45-
'curly_brace_block',
46-
'extra',
47-
'parenthesis_brace_block',
48-
'square_brace_block',
49-
'throw',
50-
'use',
51-
],
52-
'binary_operator_spaces' => [
53-
'align_double_arrow' => true,
54-
'align_equals' => true,
46+
'no_extra_blank_lines' => [
47+
'tokens' => [
48+
'curly_brace_block',
49+
'extra',
50+
'parenthesis_brace_block',
51+
'square_brace_block',
52+
'throw',
53+
'use',
54+
]
5555
],
5656
'braces' => [
5757
'allow_single_line_closure' => true,
5858
],
5959
])
6060
->setFinder(
61-
PhpCsFixer\Finder::create()
61+
(new Finder())
6262
->exclude('vendor')
6363
->exclude('tests')
6464
->in(__DIR__)
65-
);
65+
)
66+
;

ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2025-03-26 Version: 3.1.2
2+
- Update API GetSmsTemplate: add response parameters Body.VendorAuditStatus.
3+
4+
15
2025-01-03 Version: 3.1.1
26
- Update API GetSmsSign: update response param.
37
- Update API QueryExtCodeSign: update param ExtCode.

autoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
}
66

77
spl_autoload_register(function ($class) {
8-
$name = str_replace('AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\', '', $class);
8+
$name = str_replace('AlibabaCloud\SDK\Dysmsapi\V20170525\\', '', $class);
99
$file = __DIR__ . \DIRECTORY_SEPARATOR . 'src' . \DIRECTORY_SEPARATOR . str_replace('\\', \DIRECTORY_SEPARATOR, $name) . '.php';
1010
if (file_exists($file)) {
1111
require_once $file;

bootstrap.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?php
2+
3+
require dirname(__DIR__) . \DIRECTORY_SEPARATOR . 'vendor' . \DIRECTORY_SEPARATOR . 'autoload.php';

composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,16 @@
11
{
22
"name": "alibabacloud/dysmsapi-20170525",
3-
"description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
43
"type": "library",
5-
"license": "Apache-2.0",
4+
"description": "Alibaba Cloud Dysmsapi (20170525) SDK Library for PHP",
5+
"github": "https://github.com/aliyun/alibabacloud-php-sdk",
6+
"main": "src/Client.php",
67
"authors": [
78
{
89
"name": "Alibaba Cloud SDK",
910
"email": "sdk-team@alibabacloud.com"
1011
}
1112
],
12-
"require": {
13-
"php": ">5.5",
14-
"alibabacloud/tea-utils": "^0.2.21",
15-
"alibabacloud/darabonba-openapi": "^0.2.13",
16-
"alibabacloud/openapi-util": "^0.1.10|^0.2.1",
17-
"alibabacloud/endpoint-util": "^0.1.0"
18-
},
13+
"license": "Apache-2.0",
1914
"autoload": {
2015
"psr-4": {
2116
"AlibabaCloud\\SDK\\Dysmsapi\\V20170525\\": "src"
@@ -29,5 +24,10 @@
2924
"preferred-install": "dist",
3025
"optimize-autoloader": true
3126
},
27+
"require": {
28+
"php": ">5.5",
29+
"alibabacloud/darabonba": "^1.0.0",
30+
"alibabacloud/openapi-core": "^1.0.0"
31+
},
3232
"prefer-stable": true
3333
}

0 commit comments

Comments
 (0)