ComposerUpdate

This commit is contained in:
Anyon 2020-05-29 11:46:46 +08:00
parent 49ddead85e
commit 223d6e639c
3 changed files with 6 additions and 6 deletions

View File

@ -941,12 +941,12 @@
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/zoujingli/ThinkLibrary.git", "url": "https://github.com/zoujingli/ThinkLibrary.git",
"reference": "be3dbd6eb7a91e62d3cca09d20b3b29e6cd76fe3" "reference": "5e65a7f3312d1693f4f369de455b39641a140b00"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/be3dbd6eb7a91e62d3cca09d20b3b29e6cd76fe3", "url": "https://api.github.com/repos/zoujingli/ThinkLibrary/zipball/5e65a7f3312d1693f4f369de455b39641a140b00",
"reference": "be3dbd6eb7a91e62d3cca09d20b3b29e6cd76fe3", "reference": "5e65a7f3312d1693f4f369de455b39641a140b00",
"shasum": "", "shasum": "",
"mirrors": [ "mirrors": [
{ {
@ -962,7 +962,7 @@
"ext-json": "*", "ext-json": "*",
"topthink/framework": "^6.0" "topthink/framework": "^6.0"
}, },
"time": "2020-05-29T03:30:56+00:00", "time": "2020-05-29T03:43:48+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-05-29 11:35:28 // This file is automatically generated at:2020-05-29 11:46:38
declare (strict_types = 1); declare (strict_types = 1);
return array ( return array (
0 => 'think\\app\\Service', 0 => 'think\\app\\Service',

View File

@ -325,7 +325,7 @@ class SystemService extends Service
foreach (NodeService::instance()->getModules() as $module) { foreach (NodeService::instance()->getModules() as $module) {
$path = $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . $module; $path = $this->app->getRootPath() . 'runtime' . DIRECTORY_SEPARATOR . $module;
file_exists($path) && is_dir($path) or mkdir($path, 0755, true); file_exists($path) && is_dir($path) or mkdir($path, 0755, true);
$this->app->console->call("optimize:route {$module}"); $this->app->console->call("optimize:route", [$module]);
} }
} }