submit cursor rule

This commit is contained in:
xavier
2025-05-07 17:43:39 +08:00
parent 21a6907e52
commit 6fa41e3f4a
14 changed files with 1755 additions and 980 deletions

View File

@@ -0,0 +1,19 @@
<?php
return [
// 默认使用的供应商适配器标识
'default_adapter' => 'ChuKeBao',
// 各个供应商适配器的配置
'adapters' => [
'ChuKeBao' => [
'driver' => \WeChatDeviceApi\Adapters\ChuKebao\Adapter::class,
// 'api_key' => env('ChuKebao_API_KEY', ''),
// 'api_secret' => env('ChuKebao_API_SECRET', ''),
'base_url' => env('api.wechat_url'),
'username' => env('api.username', ''),
'password' => env('api.password', ''),
],
// ... 更多供应商
],
];