ComposerUpdate

This commit is contained in:
Anyon 2020-05-06 10:35:22 +08:00
parent b84b2d33fb
commit 146b2959b8
5 changed files with 21 additions and 18 deletions

8
composer.lock generated
View File

@ -909,12 +909,12 @@
"source": {
"type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "13fabbc1826f03e5ee13dfc74776ccc54da8f429"
"reference": "e313082651d91f411caf10b77d0b786ef4784445"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/13fabbc1826f03e5ee13dfc74776ccc54da8f429",
"reference": "13fabbc1826f03e5ee13dfc74776ccc54da8f429",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/e313082651d91f411caf10b77d0b786ef4784445",
"reference": "e313082651d91f411caf10b77d0b786ef4784445",
"shasum": "",
"mirrors": [
{
@ -958,7 +958,7 @@
],
"description": "ThinkPHP v6.0 Development Library",
"homepage": "http://framework.thinkadmin.top",
"time": "2020-05-06T02:04:54+00:00"
"time": "2020-05-06T02:31:00+00:00"
},
{
"name": "zoujingli/wechat-developer",

View File

@ -19,12 +19,4 @@ use think\admin\service\SystemService;
require __DIR__ . '/../vendor/autoload.php';
$app = new App();
$debug = SystemService::instance()->isDebug();
$response = $app->debug($debug)->http->run();
$response->send();
$app->http->end($response);
SystemService::instance()->doInit(new App());

View File

@ -935,12 +935,12 @@
"source": {
"type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "13fabbc1826f03e5ee13dfc74776ccc54da8f429"
"reference": "e313082651d91f411caf10b77d0b786ef4784445"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/13fabbc1826f03e5ee13dfc74776ccc54da8f429",
"reference": "13fabbc1826f03e5ee13dfc74776ccc54da8f429",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/e313082651d91f411caf10b77d0b786ef4784445",
"reference": "e313082651d91f411caf10b77d0b786ef4784445",
"shasum": "",
"mirrors": [
{
@ -956,7 +956,7 @@
"ext-json": "*",
"topthink/framework": "^6.0"
},
"time": "2020-05-06T02:04:54+00:00",
"time": "2020-05-06T02:31:00+00:00",
"type": "library",
"extra": {
"think": {

2
vendor/services.php vendored
View File

@ -1,5 +1,5 @@
<?php
// This file is automatically generated at:2020-05-06 10:16:56
// This file is automatically generated at:2020-05-06 10:34:23
declare (strict_types = 1);
return array (
0 => 'think\\app\\Service',

View File

@ -305,4 +305,15 @@ class SystemService extends Service
return $this->getRuntime('app_run') !== 'product';
}
/**
* 初始化并运行应用
* @param \think\App $app
*/
public function doInit(\think\App $app)
{
$app->debug($this->isDebug());
$response = $app->http->run();
$response->send();
$app->http->end($response);
}
}