wugg 2 năm trước cách đây
mục cha
commit
9c6c80e643
2 tập tin đã thay đổi với 160 bổ sung389 xóa
  1. 105 58
      app/admin/controller/Export.php
  2. 55 331
      composer.lock

+ 105 - 58
app/admin/controller/Export.php

@@ -3,7 +3,7 @@
 namespace app\admin\controller;
 
 use app\admin\BaseController;
-use think\facade\Db;
+use think\App;use think\facade\Db;
 
 //报表导出相关
 class Export extends BaseController
@@ -21,7 +21,60 @@ class Export extends BaseController
     private $cgdType = [1 => '库存', 2 => '非库存', 3 => '咨询'];
     private $invoice_return_status = [0 => '待财务审核', 1 => '退票中', 2 => '退票成功', 3 => '审核驳回', 4 => '退票失败'];
     private $sendStatus = [1=>'未发货',2=>'部分发货',3=>'全部发货'];
-
+	public function __construct(App $app) {
+		parent::__construct($app);
+		$action =$this->request->action();
+		switch ($action){
+			case 'invoicePoolExport':
+				$file ='销售发票申请信息导出';
+				break;
+			case 'invListExport':
+				$file ='进项发票等级导出';
+				break;
+			case 'orderPayExport':
+				$file ='资金认领导出';
+				break;
+			case 'orderlistExport':
+				$file = '回款核销明细表';
+				break;
+			case 'invExport':
+				$file='回票明细表';
+				break;
+			case 'analysisExport':
+				$file='经营分析报表';
+				break;
+			case 'orderInvExport':
+				$file='收入成本明细表';
+				break;
+			case 'standingBookExport':
+				$file='应收台账表';
+				break;
+			case 'payInvoiceExport':
+				$file='用友销票表';
+				break;
+			case 'cgdManage':
+				$file='采购单明细表';
+				break;
+			case 'payExport':
+				$file='对账单汇总表';
+				break;
+			default:
+				$file='暂无数据';
+				break;
+		}
+		$data =$this->$action();
+		$header=[];
+		foreach ($data as $value){
+		$header = array_keys($value);
+		break;
+		}
+		if(empty($header)){
+			$header=['导出数据为空'];
+			$data=[];
+		}
+        excelExport($file, $header, $data);
+
+	}
     //销售发票申请信息导出
     public function invoicePoolExport()
     {
@@ -59,12 +112,10 @@ class Export extends BaseController
             })
             ->where($where)
             ->order('a.addtime desc')
-            ->select()
-            ->toArray();
-
-        if (empty($list)) $list[] = ['导出数据为空' => ''];
-
-        excelExport('销售发票申请信息导出', array_keys($list[0]), $list);
+           ->cursor();
+        foreach ($list as $value){
+        	yield $value;
+        }
     }
 
     //进项发票等级导出
@@ -105,10 +156,11 @@ class Export extends BaseController
         $data = [];
         $i = 1;
         foreach ($list as $item) {
+
             if ($item['item_list']) {
                 $item_list = json_decode($item['item_list'], true);
                 foreach ($item_list as $val) {
-                    $data[] = [
+                    $tp = [
                         '序号' => $i++,
                         '回票申请编号' => $item['hpNo'],
                         '对账编号' => $item['payNo'],
@@ -127,9 +179,11 @@ class Export extends BaseController
                         '认证时间' => $item['updatetime'],
                         '备注' => $item['remark'],
                     ];
+
+                    yield  $tp;
                 }
             } else {
-                $data[] = [
+               $tp = [
                     '序号' => $i++,
                     '回票申请编号' => $item['hpNo'],
                     '对账编号' => $item['payNo'],
@@ -148,12 +202,9 @@ class Export extends BaseController
                     '认证时间' => $item['updatetime'],
                     '备注' => $item['remark'],
                 ];
+                yield  $tp;
             }
         }
-
-        if (empty($data)) $data[] = ['导出数据为空' => ''];
-
-        excelExport('进项发票等级导出', array_keys($data[0]), $data);
     }
 
     //资金认领导出
@@ -186,12 +237,10 @@ class Export extends BaseController
             })
             ->where($where)
             ->order('a.trade_time desc')
-            ->select()
-            ->toArray();
-
-        if (empty($list)) $list[] = ['导出数据为空' => ''];
-
-        excelExport('资金认领导出', array_keys($list[0]), $list);
+           ->cursor();
+        foreach ($list as $value){
+        	yield $value;
+        }
     }
 
     //回款核销明细表
@@ -216,18 +265,18 @@ class Export extends BaseController
         //资金认领状态
         $status = [1 => '待审批', 2 => '审批通过', 3 => '审批驳回', 4 => '已解除认领', 5 => '已取消认领'];
 
-        $list = [];
+//        $list = [];
 
         foreach ($data as $value) {
             $value['资金认领状态'] = $status[$value['资金认领状态']] ?? '';
             $value['确认单类型'] = $this->qrdSource[$value['确认单类型']] ?? '';
             $value['商品类型'] = $this->qrdType[$value['商品类型']] ?? '';
-            $list[] = $value;
+            yield $value;
         }
-
-        if (empty($list)) $list[] = ['导出数据为空' => ''];
-
-        excelExport('回款核销明细表', array_keys($list[0]), $list);
+//
+//        if (empty($list)) $list[] = ['导出数据为空' => ''];
+//
+//        excelExport('回款核销明细表', array_keys($list[0]), $list);
 
     }
 
@@ -260,7 +309,7 @@ class Export extends BaseController
         //商品类型
         $goodType = [1 => '正常商品', 2 => '赠品', 3 => '样品'];
 
-        $list = [];
+//        $list = [];
 
         foreach ($data as $value) {
             $value['采购单类型'] = $cgdSource[$value['采购单类型']] ?? '';
@@ -270,16 +319,20 @@ class Export extends BaseController
 
             unset($value['item_list']);
             foreach ($item_list as $item) {
-                $list[] = array_merge($value, [
-                    '税额' => $item['tax'] ?? '',
-                    '票面税率' => $item['tax_rate'] ?? '',
-                ]);
+				$value['税额']= $item['tax'] ?? '';
+				$value['票面税率']= $item['tax_rate'] ?? '';
+//                $list = array_merge($value, [
+//                    '税额' => $item['tax'] ?? '',
+//                    '票面税率' => $item['tax_rate'] ?? '',
+//                ]);
+                yield $value;
             }
-        }
 
-        if (empty($list)) $list[] = ['导出数据为空' => ''];
+        }
 
-        excelExport('回票明细表', array_keys($list[0]), $list);
+//        if (empty($list)) $list[] = ['导出数据为空' => ''];
+//
+//        excelExport('回票明细表', array_keys($list[0]), $list);
 
     }
 
@@ -361,12 +414,12 @@ class Export extends BaseController
             $value['毛利率'] = $value['销售总额'] == 0 ? 0 : round(bcmul(bcsub(1, bcdiv($value['采购总货款'], $value['销售总额'], 5), 5), 100), 2) . '%';
             $value['不含税采购成本'] = round(bcdiv($value['采购总货款'], bcadd(1,$value['采购税点']), 3), 2);
 
-            $list[] = $value;
+           yield $value;
         }
 
-        if (empty($list)) $list[] = ['导出数据为空' => ''];
-
-        excelExport('经营分析报表', array_keys($list[0]), $list);
+//        if (empty($list)) $list[] = ['导出数据为空' => ''];
+//
+//        excelExport('经营分析报表', array_keys($list[0]), $list);
 
     }
 
@@ -444,12 +497,12 @@ class Export extends BaseController
             $value['商品类型'] = $this->qrdType[$value['商品类型']] ?? '';
             $value['退票状态'] = $this->invoice_return_status[$value['退票状态']] ?? '';
             $value['销售来源'] = $this->qrdSource[$value['销售来源']] ?? '';
-            $list[] = $value;
+            yield $value;
         }
 
-        if (empty($list)) $list[] = ['导出数据为空' => ''];
-
-        excelExport('收入成本明细表', array_keys($list[0]), $list);
+//        if (empty($list)) $list[] = ['导出数据为空' => ''];
+//
+//        excelExport('收入成本明细表', array_keys($list[0]), $list);
 
     }
 
@@ -509,9 +562,7 @@ class Export extends BaseController
             ->where($where)
             ->order(['a.id' => 'desc'])
             ->cursor();
-
-        $list = [];
-
+//        echo Db::name('qrd_info')->getLastSql();die;
         $time = time();
 
         foreach ($data as $value) {
@@ -533,13 +584,9 @@ class Export extends BaseController
                 ->where(['qrdNo' => $value['业务订单编号']])
                 ->order(['id' => 'desc'])
                 ->value('send_date', '');
-            $list[] = $value;
+            yield $value;
         }
 
-        if (empty($list)) $list[] = ['导出数据为空' => ''];
-
-        excelExport('应收台账表', array_keys($list[0]), $list);
-
     }
 
     //用友销票表
@@ -667,12 +714,12 @@ class Export extends BaseController
             $value['回票状态'] = $this->cgd_inv_status[$payinfo['inv_status'] ?? "1"];
             $value['是否库存'] = $value['是否库存']==1?'是':'否';
             $value['发货状态'] = $this->sendStatus[$value['发货状态']];
-            $list[] = $value;
+            yield $value;
         }
 
-        if (empty($list)) $list[] = ['导出数据为空' => ''];
-
-        excelExport('采购单明细表', array_keys($list[0]), $list);
+//        if (empty($list)) $list[] = ['导出数据为空' => ''];
+//
+//        excelExport('采购单明细表', array_keys($list[0]), $list);
     }
 
     /**
@@ -723,10 +770,10 @@ class Export extends BaseController
             $value['回票状态'] = $this->inv_status[$value['回票状态']];
             $value['付款时间'] = Db::name("pay_payment")->where(['payNo'=>$value['对账编号'],"is_del"=>0])->order("id desc")
             ->value('return_time','');
-            $list[] = $value;
+           yield $value;
         }
-        if (empty($list)) $list[] = ['导出数据为空' => ''];
-
-        excelExport('订单对账汇总表', array_keys($list[0]), $list);
+//        if (empty($list)) $list[] = ['导出数据为空' => ''];
+//
+//        excelExport('订单对账汇总表', array_keys($list[0]), $list);
     }
 }

+ 55 - 331
composer.lock

@@ -6,225 +6,6 @@
     ],
     "content-hash": "3aa191934404180c982ae2eea0633938",
     "packages": [
-        {
-            "name": "league/flysystem",
-            "version": "1.1.9",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/thephpleague/flysystem.git",
-                "reference": "094defdb4a7001845300334e7c1ee2335925ef99"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/094defdb4a7001845300334e7c1ee2335925ef99",
-                "reference": "094defdb4a7001845300334e7c1ee2335925ef99",
-                "shasum": "",
-                "mirrors": [
-                    {
-                        "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
-                        "preferred": true
-                    }
-                ]
-            },
-            "require": {
-                "ext-fileinfo": "*",
-                "league/mime-type-detection": "^1.3",
-                "php": "^7.2.5 || ^8.0"
-            },
-            "conflict": {
-                "league/flysystem-sftp": "<1.0.6"
-            },
-            "require-dev": {
-                "phpspec/prophecy": "^1.11.1",
-                "phpunit/phpunit": "^8.5.8"
-            },
-            "suggest": {
-                "ext-ftp": "Allows you to use FTP server storage",
-                "ext-openssl": "Allows you to use FTPS server storage",
-                "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
-                "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
-                "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
-                "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
-                "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
-                "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
-                "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
-                "league/flysystem-webdav": "Allows you to use WebDAV storage",
-                "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
-                "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
-                "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
-            },
-            "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "1.1-dev"
-                }
-            },
-            "autoload": {
-                "psr-4": {
-                    "League\\Flysystem\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Frank de Jonge",
-                    "email": "info@frenky.net"
-                }
-            ],
-            "description": "Filesystem abstraction: Many filesystems, one API.",
-            "keywords": [
-                "Cloud Files",
-                "WebDAV",
-                "abstraction",
-                "aws",
-                "cloud",
-                "copy.com",
-                "dropbox",
-                "file systems",
-                "files",
-                "filesystem",
-                "filesystems",
-                "ftp",
-                "rackspace",
-                "remote",
-                "s3",
-                "sftp",
-                "storage"
-            ],
-            "support": {
-                "issues": "https://github.com/thephpleague/flysystem/issues",
-                "source": "https://github.com/thephpleague/flysystem/tree/1.1.9"
-            },
-            "funding": [
-                {
-                    "url": "https://offset.earth/frankdejonge",
-                    "type": "other"
-                }
-            ],
-            "time": "2021-12-09T09:40:50+00:00"
-        },
-        {
-            "name": "league/flysystem-cached-adapter",
-            "version": "1.1.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/thephpleague/flysystem-cached-adapter.git",
-                "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/thephpleague/flysystem-cached-adapter/zipball/d1925efb2207ac4be3ad0c40b8277175f99ffaff",
-                "reference": "d1925efb2207ac4be3ad0c40b8277175f99ffaff",
-                "shasum": "",
-                "mirrors": [
-                    {
-                        "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
-                        "preferred": true
-                    }
-                ]
-            },
-            "require": {
-                "league/flysystem": "~1.0",
-                "psr/cache": "^1.0.0"
-            },
-            "require-dev": {
-                "mockery/mockery": "~0.9",
-                "phpspec/phpspec": "^3.4",
-                "phpunit/phpunit": "^5.7",
-                "predis/predis": "~1.0",
-                "tedivm/stash": "~0.12"
-            },
-            "suggest": {
-                "ext-phpredis": "Pure C implemented extension for PHP"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "League\\Flysystem\\Cached\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "frankdejonge",
-                    "email": "info@frenky.net"
-                }
-            ],
-            "description": "An adapter decorator to enable meta-data caching.",
-            "support": {
-                "issues": "https://github.com/thephpleague/flysystem-cached-adapter/issues",
-                "source": "https://github.com/thephpleague/flysystem-cached-adapter/tree/master"
-            },
-            "time": "2020-07-25T15:56:04+00:00"
-        },
-        {
-            "name": "league/mime-type-detection",
-            "version": "1.11.0",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/thephpleague/mime-type-detection.git",
-                "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
-                "reference": "ff6248ea87a9f116e78edd6002e39e5128a0d4dd",
-                "shasum": "",
-                "mirrors": [
-                    {
-                        "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
-                        "preferred": true
-                    }
-                ]
-            },
-            "require": {
-                "ext-fileinfo": "*",
-                "php": "^7.2 || ^8.0"
-            },
-            "require-dev": {
-                "friendsofphp/php-cs-fixer": "^3.2",
-                "phpstan/phpstan": "^0.12.68",
-                "phpunit/phpunit": "^8.5.8 || ^9.3"
-            },
-            "type": "library",
-            "autoload": {
-                "psr-4": {
-                    "League\\MimeTypeDetection\\": "src"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "Frank de Jonge",
-                    "email": "info@frankdejonge.nl"
-                }
-            ],
-            "description": "Mime-type detection for Flysystem",
-            "support": {
-                "issues": "https://github.com/thephpleague/mime-type-detection/issues",
-                "source": "https://github.com/thephpleague/mime-type-detection/tree/1.11.0"
-            },
-            "funding": [
-                {
-                    "url": "https://github.com/frankdejonge",
-                    "type": "github"
-                },
-                {
-                    "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
-                    "type": "tidelift"
-                }
-            ],
-            "time": "2022-04-17T13:12:02+00:00"
-        },
         {
             "name": "phpoffice/phpexcel",
             "version": "1.8.2",
@@ -298,61 +79,6 @@
             "abandoned": "phpoffice/phpspreadsheet",
             "time": "2018-11-22T23:07:24+00:00"
         },
-        {
-            "name": "psr/cache",
-            "version": "1.0.1",
-            "source": {
-                "type": "git",
-                "url": "https://github.com/php-fig/cache.git",
-                "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
-            },
-            "dist": {
-                "type": "zip",
-                "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
-                "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
-                "shasum": "",
-                "mirrors": [
-                    {
-                        "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
-                        "preferred": true
-                    }
-                ]
-            },
-            "require": {
-                "php": ">=5.3.0"
-            },
-            "type": "library",
-            "extra": {
-                "branch-alias": {
-                    "dev-master": "1.0.x-dev"
-                }
-            },
-            "autoload": {
-                "psr-4": {
-                    "Psr\\Cache\\": "src/"
-                }
-            },
-            "notification-url": "https://packagist.org/downloads/",
-            "license": [
-                "MIT"
-            ],
-            "authors": [
-                {
-                    "name": "PHP-FIG",
-                    "homepage": "http://www.php-fig.org/"
-                }
-            ],
-            "description": "Common interface for caching libraries",
-            "keywords": [
-                "cache",
-                "psr",
-                "psr-6"
-            ],
-            "support": {
-                "source": "https://github.com/php-fig/cache/tree/master"
-            },
-            "time": "2016-08-06T20:24:11+00:00"
-        },
         {
             "name": "psr/container",
             "version": "1.1.1",
@@ -581,16 +307,16 @@
         },
         {
             "name": "topthink/framework",
-            "version": "v6.0.12",
+            "version": "v6.1.1",
             "source": {
                 "type": "git",
                 "url": "https://github.com/top-think/framework.git",
-                "reference": "e478316ac843c1a884a3b3a7a94db17c4001ff5c"
+                "reference": "2cb56f3e6f3c479fe90ea5f28d38d3b5ef6c4210"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/top-think/framework/zipball/e478316ac843c1a884a3b3a7a94db17c4001ff5c",
-                "reference": "e478316ac843c1a884a3b3a7a94db17c4001ff5c",
+                "url": "https://api.github.com/repos/top-think/framework/zipball/2cb56f3e6f3c479fe90ea5f28d38d3b5ef6c4210",
+                "reference": "2cb56f3e6f3c479fe90ea5f28d38d3b5ef6c4210",
                 "shasum": "",
                 "mirrors": [
                     {
@@ -602,8 +328,6 @@
             "require": {
                 "ext-json": "*",
                 "ext-mbstring": "*",
-                "league/flysystem": "^1.1.4",
-                "league/flysystem-cached-adapter": "^1.0",
                 "php": ">=7.2.5",
                 "psr/container": "~1.0",
                 "psr/http-message": "^1.0",
@@ -648,9 +372,9 @@
             ],
             "support": {
                 "issues": "https://github.com/top-think/framework/issues",
-                "source": "https://github.com/top-think/framework/tree/v6.0.12"
+                "source": "https://github.com/top-think/framework/tree/v6.1.1"
             },
-            "time": "2022-01-21T06:31:07+00:00"
+            "time": "2022-10-26T03:48:53+00:00"
         },
         {
             "name": "topthink/think-helper",
@@ -706,16 +430,16 @@
         },
         {
             "name": "topthink/think-multi-app",
-            "version": "v1.0.14",
+            "version": "v1.0.15",
             "source": {
                 "type": "git",
                 "url": "https://github.com/top-think/think-multi-app.git",
-                "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3"
+                "reference": "387e0dac059c20f92cac5da41a871e10829c1c97"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
-                "reference": "ccaad7c2d33f42cb1cc2a78d6610aaec02cea4c3",
+                "url": "https://api.github.com/repos/top-think/think-multi-app/zipball/387e0dac059c20f92cac5da41a871e10829c1c97",
+                "reference": "387e0dac059c20f92cac5da41a871e10829c1c97",
                 "shasum": "",
                 "mirrors": [
                     {
@@ -726,7 +450,7 @@
             },
             "require": {
                 "php": ">=7.1.0",
-                "topthink/framework": "^6.0.0"
+                "topthink/framework": "^6.0"
             },
             "type": "library",
             "extra": {
@@ -754,22 +478,22 @@
             "description": "thinkphp6 multi app support",
             "support": {
                 "issues": "https://github.com/top-think/think-multi-app/issues",
-                "source": "https://github.com/top-think/think-multi-app/tree/master"
+                "source": "https://github.com/top-think/think-multi-app/tree/v1.0.15"
             },
-            "time": "2020-07-12T13:50:37+00:00"
+            "time": "2022-10-26T08:03:06+00:00"
         },
         {
             "name": "topthink/think-orm",
-            "version": "v2.0.53",
+            "version": "v2.0.56",
             "source": {
                 "type": "git",
                 "url": "https://github.com/top-think/think-orm.git",
-                "reference": "06783eda65547a70ea686360a897759e1f873fff"
+                "reference": "75b8512736daaa056d511f42c15bed87c9f3605a"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/top-think/think-orm/zipball/06783eda65547a70ea686360a897759e1f873fff",
-                "reference": "06783eda65547a70ea686360a897759e1f873fff",
+                "url": "https://api.github.com/repos/top-think/think-orm/zipball/75b8512736daaa056d511f42c15bed87c9f3605a",
+                "reference": "75b8512736daaa056d511f42c15bed87c9f3605a",
                 "shasum": "",
                 "mirrors": [
                     {
@@ -782,8 +506,8 @@
                 "ext-json": "*",
                 "ext-pdo": "*",
                 "php": ">=7.1.0",
-                "psr/log": "~1.0",
-                "psr/simple-cache": "^1.0",
+                "psr/log": "^1.0|^2.0",
+                "psr/simple-cache": "^1.0|^2.0",
                 "topthink/think-helper": "^3.1"
             },
             "require-dev": {
@@ -815,24 +539,24 @@
             ],
             "support": {
                 "issues": "https://github.com/top-think/think-orm/issues",
-                "source": "https://github.com/top-think/think-orm/tree/v2.0.53"
+                "source": "https://github.com/top-think/think-orm/tree/v2.0.56"
             },
-            "time": "2022-02-28T14:54:22+00:00"
+            "time": "2022-12-15T02:52:53+00:00"
         }
     ],
     "packages-dev": [
         {
             "name": "symfony/polyfill-mbstring",
-            "version": "v1.26.0",
+            "version": "v1.27.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/polyfill-mbstring.git",
-                "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e"
+                "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
-                "reference": "9344f9cb97f3b19424af1a21a3b0e75b0a7d8d7e",
+                "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
+                "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
                 "shasum": "",
                 "mirrors": [
                     {
@@ -853,7 +577,7 @@
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-main": "1.26-dev"
+                    "dev-main": "1.27-dev"
                 },
                 "thanks": {
                     "name": "symfony/polyfill",
@@ -892,7 +616,7 @@
                 "shim"
             ],
             "support": {
-                "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0"
+                "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
             },
             "funding": [
                 {
@@ -908,20 +632,20 @@
                     "type": "tidelift"
                 }
             ],
-            "time": "2022-05-24T11:49:31+00:00"
+            "time": "2022-11-03T14:55:06+00:00"
         },
         {
             "name": "symfony/polyfill-php72",
-            "version": "v1.26.0",
+            "version": "v1.27.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/polyfill-php72.git",
-                "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2"
+                "reference": "869329b1e9894268a8a61dabb69153029b7a8c97"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/bf44a9fd41feaac72b074de600314a93e2ae78e2",
-                "reference": "bf44a9fd41feaac72b074de600314a93e2ae78e2",
+                "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/869329b1e9894268a8a61dabb69153029b7a8c97",
+                "reference": "869329b1e9894268a8a61dabb69153029b7a8c97",
                 "shasum": "",
                 "mirrors": [
                     {
@@ -936,7 +660,7 @@
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-main": "1.26-dev"
+                    "dev-main": "1.27-dev"
                 },
                 "thanks": {
                     "name": "symfony/polyfill",
@@ -974,7 +698,7 @@
                 "shim"
             ],
             "support": {
-                "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0"
+                "source": "https://github.com/symfony/polyfill-php72/tree/v1.27.0"
             },
             "funding": [
                 {
@@ -990,20 +714,20 @@
                     "type": "tidelift"
                 }
             ],
-            "time": "2022-05-24T11:49:31+00:00"
+            "time": "2022-11-03T14:55:06+00:00"
         },
         {
             "name": "symfony/polyfill-php80",
-            "version": "v1.26.0",
+            "version": "v1.27.0",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/polyfill-php80.git",
-                "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace"
+                "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/cfa0ae98841b9e461207c13ab093d76b0fa7bace",
-                "reference": "cfa0ae98841b9e461207c13ab093d76b0fa7bace",
+                "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
+                "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
                 "shasum": "",
                 "mirrors": [
                     {
@@ -1018,7 +742,7 @@
             "type": "library",
             "extra": {
                 "branch-alias": {
-                    "dev-main": "1.26-dev"
+                    "dev-main": "1.27-dev"
                 },
                 "thanks": {
                     "name": "symfony/polyfill",
@@ -1063,7 +787,7 @@
                 "shim"
             ],
             "support": {
-                "source": "https://github.com/symfony/polyfill-php80/tree/v1.26.0"
+                "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
             },
             "funding": [
                 {
@@ -1079,20 +803,20 @@
                     "type": "tidelift"
                 }
             ],
-            "time": "2022-05-10T07:21:04+00:00"
+            "time": "2022-11-03T14:55:06+00:00"
         },
         {
             "name": "symfony/var-dumper",
-            "version": "v4.4.42",
+            "version": "v4.4.47",
             "source": {
                 "type": "git",
                 "url": "https://github.com/symfony/var-dumper.git",
-                "reference": "742aab50ad097bcb62d91fccb613f66b8047d2ca"
+                "reference": "1069c7a3fca74578022fab6f81643248d02f8e63"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/symfony/var-dumper/zipball/742aab50ad097bcb62d91fccb613f66b8047d2ca",
-                "reference": "742aab50ad097bcb62d91fccb613f66b8047d2ca",
+                "url": "https://api.github.com/repos/symfony/var-dumper/zipball/1069c7a3fca74578022fab6f81643248d02f8e63",
+                "reference": "1069c7a3fca74578022fab6f81643248d02f8e63",
                 "shasum": "",
                 "mirrors": [
                     {
@@ -1158,7 +882,7 @@
                 "dump"
             ],
             "support": {
-                "source": "https://github.com/symfony/var-dumper/tree/v4.4.42"
+                "source": "https://github.com/symfony/var-dumper/tree/v4.4.47"
             },
             "funding": [
                 {
@@ -1174,20 +898,20 @@
                     "type": "tidelift"
                 }
             ],
-            "time": "2022-05-21T10:00:54+00:00"
+            "time": "2022-10-03T15:15:11+00:00"
         },
         {
             "name": "topthink/think-trace",
-            "version": "v1.4",
+            "version": "v1.5",
             "source": {
                 "type": "git",
                 "url": "https://github.com/top-think/think-trace.git",
-                "reference": "9a9fa8f767b6c66c5a133ad21ca1bc96ad329444"
+                "reference": "55027fd79abb744f32a3be8d9e1ccf873a3ca9b7"
             },
             "dist": {
                 "type": "zip",
-                "url": "https://api.github.com/repos/top-think/think-trace/zipball/9a9fa8f767b6c66c5a133ad21ca1bc96ad329444",
-                "reference": "9a9fa8f767b6c66c5a133ad21ca1bc96ad329444",
+                "url": "https://api.github.com/repos/top-think/think-trace/zipball/55027fd79abb744f32a3be8d9e1ccf873a3ca9b7",
+                "reference": "55027fd79abb744f32a3be8d9e1ccf873a3ca9b7",
                 "shasum": "",
                 "mirrors": [
                     {
@@ -1198,7 +922,7 @@
             },
             "require": {
                 "php": ">=7.1.0",
-                "topthink/framework": "^6.0.0"
+                "topthink/framework": "^6.0"
             },
             "type": "library",
             "extra": {
@@ -1229,9 +953,9 @@
             "description": "thinkphp debug trace",
             "support": {
                 "issues": "https://github.com/top-think/think-trace/issues",
-                "source": "https://github.com/top-think/think-trace/tree/v1.4"
+                "source": "https://github.com/top-think/think-trace/tree/v1.5"
             },
-            "time": "2020-06-29T05:27:28+00:00"
+            "time": "2022-10-26T07:56:45+00:00"
         }
     ],
     "aliases": [],