Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "tencentyun-api/qcloudapi-sdk-php",
"name": "munggruel/qcloudapi-sdk-php",
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

请不要修改这个文件

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

小伙子有点狠。。。。直接把包名改了

"keywords": ["tencentyun", "qcloud", "sdk"],
"homepage": "http://www.qcloud.com/",
"license": "MIT",
Expand Down
15 changes: 15 additions & 0 deletions src/QcloudApi/Module/Wss.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php
require_once QCLOUDAPI_ROOT_PATH . '/Module/Base.php';
/**
* QcloudApi_Module_Wss
* 文智模块类
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

模块描述不准确,请按照官网的说法更正为SLL证书模块类

*/
class QcloudApi_Module_Wss extends QcloudApi_Module_Base
{
/**
* $_serverHost
* 接口域名
* @var string
*/
protected $_serverHost = 'wss.api.qcloud.com';
}
8 changes: 7 additions & 1 deletion src/QcloudApi/QcloudApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,18 @@ class QcloudApi
*/
const MODULE_TDSQL = 'tdsql';

/**
/**
* MODULE_BM
* 黑石BM
*/
const MODULE_BM = 'bm';

/**
* MODULE_WSS
* SSL证书
*/
const MODULE_WSS = 'wss';

/**
* load
* 加载模块文件
Expand Down