composer update

This commit is contained in:
jianghanbo 2024-10-28 15:50:29 +08:00
parent e2ada87dbf
commit b7ec3b9482
2 changed files with 24 additions and 43 deletions

View File

@ -73,13 +73,23 @@ function app_path(string $path = ''): string
/**
* Public path
* @param string $path
* @param string|null $plugin
* @return string
*/
function public_path(string $path = ''): string
function public_path(string $path = '', string $plugin = null): string
{
static $publicPath = '';
if (!$publicPath) {
$publicPath = \config('app.public_path') ?: run_path('public');
static $publicPaths = [];
$plugin = $plugin ?? '';
if (isset($publicPaths[$plugin])) {
$publicPath = $publicPaths[$plugin];
} else {
$prefix = $plugin ? "plugin.$plugin." : '';
$pathPrefix = $plugin ? 'plugin' . DIRECTORY_SEPARATOR . $plugin . DIRECTORY_SEPARATOR : '';
$publicPath = \config("{$prefix}app.public_path", run_path("{$pathPrefix}public"));
if (count($publicPaths) > 32) {
$publicPaths = [];
}
$publicPaths[$plugin] = $publicPath;
}
return path_combine($publicPath, $path);
}
@ -244,9 +254,6 @@ function think_view(string $template, array $vars = [], string $app = null): Res
* @param array $vars
* @param string|null $app
* @return Response
* @throws LoaderError
* @throws RuntimeError
* @throws SyntaxError
*/
function twig_view(string $template, array $vars = [], string $app = null): Response
{
@ -510,7 +517,11 @@ function cpu_count(): int
if (strtolower(PHP_OS) === 'darwin') {
$count = (int)shell_exec('sysctl -n machdep.cpu.core_count');
} else {
$count = (int)shell_exec('nproc');
try {
$count = (int)shell_exec('nproc');
} catch (\Throwable $ex) {
// Do nothing
}
}
}
return $count > 0 ? $count : 4;
@ -526,35 +537,3 @@ function input(string $param = null, $default = null)
{
return is_null($param) ? request()->all() : request()->input($param, $default);
}
/**
* 获取一周的日期
* @return array
*/
function get_week_days() {
// 获取当前日期
$today = new DateTime();
// 获取当前周的周一
$monday = clone $today;
$monday->modify('monday this week');
// 获取当前周的周日
$sunday = clone $today;
$sunday->modify('sunday this week');
// 初始化日期数组
$dates = [];
$dayNmae = ['星期一', '星期二', '星期三', '星期四', '星期五', '星期六', '星期天'];
// 从周一到周日循环
for ($i = 0; $i < 7; $i++) {
$date = clone $monday;
$date->modify("+$i days");
$dates[] = [
'date_name' => $dayNmae[$i],
'date' => $date->format('Y-m-d')
];
}
return $dates;
}

8
service/webman Normal file → Executable file
View File

@ -27,9 +27,11 @@ if (is_dir($command_path = Util::guessPath(app_path(), '/command', true))) {
foreach (config('plugin', []) as $firm => $projects) {
if (isset($projects['app'])) {
if ($command_str = Util::guessPath(base_path() . "/plugin/$firm", 'command')) {
$command_path = base_path() . "/plugin/$firm/$command_str";
$cli->installCommands($command_path, "plugin\\$firm\\$command_str");
foreach (['', '/app'] as $app) {
if ($command_str = Util::guessPath(base_path() . "/plugin/$firm{$app}", 'command')) {
$command_path = base_path() . "/plugin/$firm{$app}/$command_str";
$cli->installCommands($command_path, "plugin\\$firm" . str_replace('/', '\\', $app) . "\\$command_str");
}
}
}
foreach ($projects as $name => $project) {