Skip to content

Commit 7f21619

Browse files
committed
Add CreateMarketCellSpace method.
1 parent a2d3546 commit 7f21619

12 files changed

+2614
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 1.8.42 - 2019-12-31
4+
- Add CreateMarketCellSpace method.
5+
6+
37
## 1.8.41 - 2019-12-31
48
- Support asymmetric keys.
59

SUPPORTED-EN.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[简体中文](./SUPPORTED.md) | English
22

33
# Supported
4-
Alibaba Cloud SDK for PHP has supported quick access to 182 versions of 161 products, as listed below:
4+
Alibaba Cloud SDK for PHP has supported quick access to 184 versions of 162 products, as listed below:
55

66
| Products | Versions |
77
|----------|-------------|
@@ -103,6 +103,7 @@ Alibaba Cloud SDK for PHP has supported quick access to 182 versions of 161 prod
103103
| [Live](https://packagist.org/packages/alibabacloud/live) | V20161101 |
104104
| [Lubancloud](https://packagist.org/packages/alibabacloud/lubancloud) | V20180509 |
105105
| [Lubanruler](https://packagist.org/packages/alibabacloud/lubanruler) | V20171228 |
106+
| [MPServerless](https://packagist.org/packages/alibabacloud/mpserverless) | V20190615, V20190930 |
106107
| [Market](https://packagist.org/packages/alibabacloud/market) | V20151101 |
107108
| [MoPen](https://packagist.org/packages/alibabacloud/mopen) | V20180211 |
108109
| [Mts](https://packagist.org/packages/alibabacloud/mts) | V20140618 |

SUPPORTED.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
简体中文 | [English](./SUPPORTED-EN.md)
22

33
# 支持
4-
Alibaba Cloud SDK for PHP 已经支持 161 个产品共 182 个版本的快捷访问,列表如下:
4+
Alibaba Cloud SDK for PHP 已经支持 162 个产品共 184 个版本的快捷访问,列表如下:
55

66
| 产品 | 版本 |
77
|----------|-------------|
@@ -103,6 +103,7 @@ Alibaba Cloud SDK for PHP 已经支持 161 个产品共 182 个版本的快捷
103103
| [Live](https://packagist.org/packages/alibabacloud/live) | V20161101 |
104104
| [Lubancloud](https://packagist.org/packages/alibabacloud/lubancloud) | V20180509 |
105105
| [Lubanruler](https://packagist.org/packages/alibabacloud/lubanruler) | V20171228 |
106+
| [MPServerless](https://packagist.org/packages/alibabacloud/mpserverless) | V20190615, V20190930 |
106107
| [Market](https://packagist.org/packages/alibabacloud/market) | V20151101 |
107108
| [MoPen](https://packagist.org/packages/alibabacloud/mopen) | V20180211 |
108109
| [Mts](https://packagist.org/packages/alibabacloud/mts) | V20140618 |

composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@
140140
"alibabacloud/live": "self.version",
141141
"alibabacloud/lubancloud": "self.version",
142142
"alibabacloud/lubanruler": "self.version",
143+
"alibabacloud/mpserverless": "self.version",
143144
"alibabacloud/market": "self.version",
144145
"alibabacloud/mopen": "self.version",
145146
"alibabacloud/mts": "self.version",

src/IdeHelper.php

+1
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@
105105
* @method static Live\Live live()
106106
* @method static Lubancloud\Lubancloud lubancloud()
107107
* @method static Lubanruler\Lubanruler lubanruler()
108+
* @method static MPServerless\MPServerless mPServerless()
108109
* @method static Market\Market market()
109110
* @method static MoPen\MoPen moPen()
110111
* @method static Mts\Mts mts()

src/MPServerless/MPServerless.php

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
namespace AlibabaCloud\MPServerless;
4+
5+
use AlibabaCloud\Client\Resolver\VersionResolver;
6+
7+
/**
8+
* @method static V20190615\MPServerlessApiResolver v20190615()
9+
* @method static V20190930\MPServerlessApiResolver v20190930()
10+
*/
11+
class MPServerless extends VersionResolver
12+
{
13+
}

src/MPServerless/README-EN.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
[¼òÌåÖÐÎÄ](./README.md) | English
2+
3+
<p align="center">
4+
<a href=" https://www.aliyun.com"><img src="https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg"></a>
5+
</p>
6+
7+
<h1 align="center">Alibaba Cloud MPServerless SDK for PHP</h1>
8+
9+
If [Alibaba Cloud SDK for PHP][sdk] is installed, there is no need to install the product dependency package. This product dependency package is only part of the synchronization from [Alibaba Cloud SDK for PHP][sdk], and its namespace and usage are consistent with [Alibaba Cloud SDK for PHP][sdk].
10+
11+
If you don't care about file size, we recommend that you install [Alibaba Cloud SDK for PHP][sdk] and update it regularly so as to maintain the latest and most complete product support:
12+
```
13+
composer require alibabacloud/sdk
14+
```
15+
16+
The product can also be installed only:
17+
> The version of this product is always synchronized with [Alibaba Cloud SDK for PHP][sdk] to ensure that it can switch with [Alibaba Cloud SDK for PHP][sdk] at any time without changing the business code, although the code between different versions of this product may not change.
18+
```
19+
composer require alibabacloud/mpserverless
20+
```
21+
22+
***
23+
Refer to document [Alibaba Cloud SDK for PHP][sdk] for more SDK usage.
24+
25+
[sdk]: https://github.com/aliyun/openapi-sdk-php

src/MPServerless/README.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
简体中文 | [English](./README-EN.md)
2+
3+
<p align="center">
4+
<a href=" https://www.aliyun.com"><img src="https://aliyunsdk-pages.alicdn.com/icons/Aliyun.svg"></a>
5+
</p>
6+
7+
<h1 align="center">Alibaba Cloud MPServerless SDK for PHP</h1>
8+
9+
若已安装 [Alibaba Cloud SDK for PHP][sdk] 则无需安装本产品依赖包。本产品依赖包只是从 [Alibaba Cloud SDK for PHP][sdk] 中同步出来的一部分,其命名空间、用法与 [Alibaba Cloud SDK for PHP][sdk] 一致。
10+
11+
如果您不在乎文件体积,建议您安装 [Alibaba Cloud SDK for PHP][sdk] 并经常更新,以便保持最新、最全的产品支持:
12+
```
13+
composer require alibabacloud/sdk
14+
```
15+
16+
也可仅安装本产品:
17+
> 本产品的版本始终和 [Alibaba Cloud SDK for PHP][sdk] 保持同步,以保证在不改变业务代码的情况下随时和 [Alibaba Cloud SDK for PHP][sdk] 相互切换,尽管本产品不同版本之间的代码可能没有变化。
18+
```
19+
composer require alibabacloud/mpserverless
20+
```
21+
22+
***
23+
更多 SDK 的使用请参考 [Alibaba Cloud SDK for PHP][sdk] 文档。
24+
25+
[sdk]: https://github.com/aliyun/openapi-sdk-php

0 commit comments

Comments
 (0)