24 lines
643 B
PHP
24 lines
643 B
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
|
||
return [
|
||
|
||
/*
|
||
|--------------------------------------------------------------------------
|
||
| 插件/主题市场
|
||
|--------------------------------------------------------------------------
|
||
|
|
||
| url 留空表示不使用远程市场,仅支持本地 ZIP 安装。
|
||
| 远程市场需返回 JSON:{ items: [ { type, vendor, name, version, title, description, author, checksum, download_url } ] }
|
||
|--------------------------------------------------------------------------
|
||
*/
|
||
|
||
'url' => env('MARKET_URL', ''),
|
||
|
||
'token' => env('MARKET_TOKEN', ''),
|
||
|
||
'timeout' => 15,
|
||
];
|