mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
ComposerUpdate
This commit is contained in:
parent
b84b2d33fb
commit
146b2959b8
8
composer.lock
generated
8
composer.lock
generated
@ -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",
|
||||
|
@ -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());
|
8
vendor/composer/installed.json
vendored
8
vendor/composer/installed.json
vendored
@ -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
2
vendor/services.php
vendored
@ -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',
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user