ComposerUpdate

This commit is contained in:
Anyon 2020-04-26 09:34:09 +08:00
parent 83489a4628
commit 9f4b8f62d7
4 changed files with 9 additions and 10 deletions

8
composer.lock generated
View File

@ -909,12 +909,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "ecc7e82523daebbd8e57d7e19b216e795d3d229e" "reference": "e4c99cc5188f842c2842b0822e9e93328932900d"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/ecc7e82523daebbd8e57d7e19b216e795d3d229e", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/e4c99cc5188f842c2842b0822e9e93328932900d",
"reference": "ecc7e82523daebbd8e57d7e19b216e795d3d229e", "reference": "e4c99cc5188f842c2842b0822e9e93328932900d",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -958,7 +958,7 @@
], ],
"description": "ThinkPHP v6.0 Development Library", "description": "ThinkPHP v6.0 Development Library",
"homepage": "http://framework.thinkadmin.top", "homepage": "http://framework.thinkadmin.top",
"time": "2020-04-23T09:32:46+00:00" "time": "2020-04-23T09:59:16+00:00"
}, },
{ {
"name": "zoujingli/wechat-developer", "name": "zoujingli/wechat-developer",

View File

@ -935,12 +935,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "ecc7e82523daebbd8e57d7e19b216e795d3d229e" "reference": "e4c99cc5188f842c2842b0822e9e93328932900d"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/ecc7e82523daebbd8e57d7e19b216e795d3d229e", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/e4c99cc5188f842c2842b0822e9e93328932900d",
"reference": "ecc7e82523daebbd8e57d7e19b216e795d3d229e", "reference": "e4c99cc5188f842c2842b0822e9e93328932900d",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -956,7 +956,7 @@
"ext-json": "*", "ext-json": "*",
"topthink/framework": "^6.0" "topthink/framework": "^6.0"
}, },
"time": "2020-04-23T09:32:46+00:00", "time": "2020-04-23T09:59:16+00:00",
"type": "library", "type": "library",
"extra": { "extra": {
"think": { "think": {

2
vendor/services.php vendored
View File

@ -1,5 +1,5 @@
<?php <?php
// This file is automatically generated at:2020-04-23 17:35:28 // This file is automatically generated at:2020-04-26 09:33:53
declare (strict_types = 1); declare (strict_types = 1);
return array ( return array (
0 => 'think\\app\\Service', 0 => 'think\\app\\Service',

View File

@ -54,7 +54,6 @@ class Optimize extends Command
$this->setQueueProgress(2, "[{$stridx}] 正在优化数据表 {$table}", $used / $total * 100); $this->setQueueProgress(2, "[{$stridx}] 正在优化数据表 {$table}", $used / $total * 100);
$this->app->db->query("OPTIMIZE TABLE `{$table}`"); $this->app->db->query("OPTIMIZE TABLE `{$table}`");
} }
$this->setQueueMessage(3, '数据库优化完成!');
} }
} }