Files
zhamao-framework/src/ZM/Utils/ZMUtil.php
2022-12-30 16:13:25 +08:00

20 lines
444 B
PHP

<?php
declare(strict_types=1);
namespace ZM\Utils;
class ZMUtil
{
/**
* 获取 composer.json 并转为数组进行读取使用
*
* @param null|string $path 路径
* @throws \JsonException
*/
public static function getComposerMetadata(?string $path = null): ?array
{
return json_decode(file_get_contents(($path ?? SOURCE_ROOT_DIR) . '/composer.json'), true, 512, JSON_THROW_ON_ERROR);
}
}