[fix] composer.json does not match the expected JSON schema

This commit is contained in:
Lkeme 2025-05-08 12:41:04 +08:00
parent 0f1d384c2b
commit 69c78d42f3
4 changed files with 6 additions and 6 deletions

View File

@ -2,7 +2,7 @@
"name": "lkeme/bilihelper-personal",
"description": "B 站自动领瓜子、直播助手、直播挂机脚本、主站助手 - PHP 版Personal",
"type": "project",
"version": "2.*.*-dev",
"version": "2.4.x-dev",
"minimum-stability": "stable",
"license": "MIT",
"authors": [

View File

@ -219,7 +219,7 @@ proxy = "http://127.0.0.1:8888"
; 是否使用自定义Github File Mirror/默认使用官方源
[network_github]
enable = true
mirror = "https://hub.gitmirror.com/"
mirror = "https://ghfast.top/"
#######################
# 程序设置 #

View File

@ -3,8 +3,8 @@ device_version: 0.0.1
app:
bili_a: # Android
package: "tv.danmaku.bili"
version: "8.33.0"
build: "8330200"
version: "8.44.0"
build: "8440300"
channel: "bili"
device: "phone"
mobi_app: "android"
@ -15,7 +15,7 @@ app:
secret_key: "NTYwYzUyY2NkMjg4ZmVkMDQ1ODU5ZWQxOGJmZmQ5NzM"
app_key_n: "NzgzYmJiNzI2NDQ1MWQ4Mg=="
secret_key_n: "MjY1MzU4M2M4ODczZGVhMjY4YWI5Mzg2OTE4YjFkNjU="
statistics: '{"appId":1,"platform":3,"version":"8.33.0","abtest":""}'
statistics: '{"appId":1,"platform":3,"version":"8.44.0","abtest":""}'
bili_i: # IOS
app_key: "MjdlYjUzZmM5MDU4ZjhjMw=="
secret_key: "YzJlZDUzYTc0ZWVlZmUzY2Y5OWZiZDAxZDhjOWMzNzU="

View File

@ -66,7 +66,7 @@ class Collection extends \Toolkit\Stdlib\Std\Collection
*
* @return mixed
*/
public function set(string $key, mixed $value): self
public function set(string $key, mixed $value): static
{
if ($this->keyPathSep && strpos($key, $this->keyPathSep) > 0) {
Arr::setByPath($this->data, $key, $value, $this->keyPathSep);