ComposerUpdate

This commit is contained in:
Anyon 2019-11-28 11:23:18 +08:00
parent 4aa4dd13a0
commit b34c7426f7
4 changed files with 10 additions and 10 deletions

8
composer.lock generated
View File

@ -783,12 +783,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "c65a66a1df421bd480f564378909ae9ef36c2191" "reference": "32904c53ced38e3fbe5de93fa074b53cf6b35c6b"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/c65a66a1df421bd480f564378909ae9ef36c2191", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/32904c53ced38e3fbe5de93fa074b53cf6b35c6b",
"reference": "c65a66a1df421bd480f564378909ae9ef36c2191", "reference": "32904c53ced38e3fbe5de93fa074b53cf6b35c6b",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -832,7 +832,7 @@
], ],
"description": "ThinkPHP v6.0 Development Library", "description": "ThinkPHP v6.0 Development Library",
"homepage": "http://framework.thinkadmin.top", "homepage": "http://framework.thinkadmin.top",
"time": "2019-11-28T02:43:48+00:00" "time": "2019-11-28T03:18:03+00:00"
} }
], ],
"packages-dev": [], "packages-dev": [],

View File

@ -805,12 +805,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "c65a66a1df421bd480f564378909ae9ef36c2191" "reference": "32904c53ced38e3fbe5de93fa074b53cf6b35c6b"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/c65a66a1df421bd480f564378909ae9ef36c2191", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/32904c53ced38e3fbe5de93fa074b53cf6b35c6b",
"reference": "c65a66a1df421bd480f564378909ae9ef36c2191", "reference": "32904c53ced38e3fbe5de93fa074b53cf6b35c6b",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -826,7 +826,7 @@
"ext-json": "*", "ext-json": "*",
"topthink/framework": "^6.0" "topthink/framework": "^6.0"
}, },
"time": "2019-11-28T02:43:48+00:00", "time": "2019-11-28T03:18:03+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:2019-11-28 10:56:22 // This file is automatically generated at:2019-11-28 11:22:51
declare (strict_types = 1); declare (strict_types = 1);
return array ( return array (
0 => 'think\\app\\Service', 0 => 'think\\app\\Service',

View File

@ -55,7 +55,7 @@ class ProcessService extends Service
if ($this->iswin()) { if ($this->iswin()) {
$this->exec(__DIR__ . "/bin/console.exe {$command}"); $this->exec(__DIR__ . "/bin/console.exe {$command}");
} else { } else {
$this->exec("{$command} 2>&1"); $this->exec("{$command} > /dev/null &");
} }
return $this; return $this;
} }