diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index a6cce4001..7eb5bc67f 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -460,17 +460,17 @@ }, { "name": "zoujingli/wechat-developer", - "version": "v1.2.23", - "version_normalized": "1.2.23.0", + "version": "v1.2.24", + "version_normalized": "1.2.24.0", "source": { "type": "git", "url": "https://github.com/zoujingli/WeChatDeveloper.git", - "reference": "f070dd076a4137ff4e86600b63d1ccfe2f744a92" + "reference": "2e5ca0d48fca8014eea504db6daec2b97d53d768" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/zoujingli/WeChatDeveloper/zipball/f070dd076a4137ff4e86600b63d1ccfe2f744a92", - "reference": "f070dd076a4137ff4e86600b63d1ccfe2f744a92", + "url": "https://api.github.com/repos/zoujingli/WeChatDeveloper/zipball/2e5ca0d48fca8014eea504db6daec2b97d53d768", + "reference": "2e5ca0d48fca8014eea504db6daec2b97d53d768", "shasum": "", "mirrors": [ { @@ -490,7 +490,7 @@ "ext-xml": "*", "php": ">=5.4" }, - "time": "2020-07-20T06:55:26+00:00", + "time": "2020-08-16T07:01:12+00:00", "type": "library", "installation-source": "dist", "autoload": { diff --git a/vendor/zoujingli/wechat-developer/We.php b/vendor/zoujingli/wechat-developer/We.php index 846476cdc..2de2ebe90 100644 --- a/vendor/zoujingli/wechat-developer/We.php +++ b/vendor/zoujingli/wechat-developer/We.php @@ -86,7 +86,7 @@ class We * 定义当前版本 * @var string */ - const VERSION = '1.2.23'; + const VERSION = '1.2.24'; /** * 静态配置 @@ -136,4 +136,4 @@ class We throw new InvalidInstanceException("class {$name} not found"); } -} \ No newline at end of file +} diff --git a/vendor/zoujingli/wechat-developer/WeChat/Contracts/Tools.php b/vendor/zoujingli/wechat-developer/WeChat/Contracts/Tools.php index fe3882e90..8209caeb8 100644 --- a/vendor/zoujingli/wechat-developer/WeChat/Contracts/Tools.php +++ b/vendor/zoujingli/wechat-developer/WeChat/Contracts/Tools.php @@ -360,6 +360,11 @@ class Tools $mycurl = new MyCurlFile((array)$value); $data[$key] = $mycurl->get(); array_push(self::$cache_curl, $mycurl->tempname); + } elseif (is_array($value) && isset($value['datatype']) && $value['datatype'] === 'MY_CURL_FILE') { + $build = false; + $mycurl = new MyCurlFile($value); + $data[$key] = $mycurl->get(); + array_push(self::$cache_curl, $mycurl->tempname); } elseif (is_string($value) && class_exists('CURLFile', false) && stripos($value, '@') === 0) { if (($filename = realpath(trim($value, '@'))) && file_exists($filename)) { $build = false; @@ -458,4 +463,4 @@ class Tools file_exists(self::$cache_path) || mkdir(self::$cache_path, 0755, true); return self::$cache_path . $name; } -} \ No newline at end of file +} diff --git a/vendor/zoujingli/wechat-developer/WeMini/Newtmpl.php b/vendor/zoujingli/wechat-developer/WeMini/Newtmpl.php index 0bb402715..29d7e8d4b 100644 --- a/vendor/zoujingli/wechat-developer/WeMini/Newtmpl.php +++ b/vendor/zoujingli/wechat-developer/WeMini/Newtmpl.php @@ -73,8 +73,9 @@ class Newtmpl extends BasicWeChat public function getPubTemplateTitleList($ids) { $url = 'https://api.weixin.qq.com/wxaapi/newtmpl/getpubtemplatetitles?access_token=ACCESS_TOKEN'; + $url .= '&' . http_build_query(['ids' => $ids, 'start' => '0', 'limit' => '30']); $this->registerApi($url, __FUNCTION__, func_get_args()); - return $this->callPostApi($url, ['ids' => $ids, 'start' => '0', 'limit' => '30'], true); + return $this->callGetApi($url); } /** @@ -87,8 +88,9 @@ class Newtmpl extends BasicWeChat public function getPubTemplateKeyWordsById($tid) { $url = 'https://api.weixin.qq.com/wxaapi/newtmpl/getpubtemplatekeywords?access_token=ACCESS_TOKEN'; + $url .= '&' . http_build_query(['tid' => $tid]); $this->registerApi($url, __FUNCTION__, func_get_args()); - return $this->callPostApi($url, ['tid' => $tid], true); + return $this->callGetApi($url); } /** @@ -117,7 +119,7 @@ class Newtmpl extends BasicWeChat { $url = 'https://api.weixin.qq.com/wxaapi/newtmpl/gettemplate?access_token=ACCESS_TOKEN'; $this->registerApi($url, __FUNCTION__, func_get_args()); - return $this->callPostApi($url, [], true); + return $this->callGetApi($url); } /** diff --git a/vendor/zoujingli/wechat-developer/_test/alipay-app.php b/vendor/zoujingli/wechat-developer/_test/alipay-app.php index 0070eb31c..2efcc13de 100644 --- a/vendor/zoujingli/wechat-developer/_test/alipay-app.php +++ b/vendor/zoujingli/wechat-developer/_test/alipay-app.php @@ -28,10 +28,9 @@ try { $result = $pay->apply([ 'out_trade_no' => time(), // 商户订单号 'total_amount' => '1', // 支付金额 - 'subject' => 'test subject', // 支付订单描述 + 'subject' => '支付宝订单标题', // 支付订单描述 ]); - echo '
';
-    var_export($result);
+    echo $result;
 } catch (\Exception $e) {
     echo $e->getMessage();
 }
diff --git a/vendor/zoujingli/wechat-developer/_test/alipay-bill.php b/vendor/zoujingli/wechat-developer/_test/alipay-bill.php
index af5c493cf..4bc7797bd 100644
--- a/vendor/zoujingli/wechat-developer/_test/alipay-bill.php
+++ b/vendor/zoujingli/wechat-developer/_test/alipay-bill.php
@@ -26,7 +26,7 @@ try {
 
     // 请参考(请求参数):https://docs.open.alipay.com/api_15/alipay.data.dataservice.bill.downloadurl.query
     $result = $pay->apply([
-        'bill_date' => '2018-10-03', // 账单时间(日账单yyyy-MM-dd,月账单 yyyy-MM)
+        'bill_date' => '2020-07-03', // 账单时间(日账单yyyy-MM-dd,月账单 yyyy-MM)
         'bill_type' => 'signcustomer', // 账单类型(trade指商户基于支付宝交易收单的业务账单,signcustomer是指基于商户支付宝余额收入及支出等资金变动的帐务账单)
     ]);
     echo '
';