mirror of
https://github.com/zoe-may/TDoG-Skin.git
synced 2024-11-24 05:42:19 +08:00
49 lines
1.5 KiB
PHP
Executable File
49 lines
1.5 KiB
PHP
Executable File
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Plugins Directory
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The absolute path for loading plugins.
|
|
| Defaults to `base_path()."/plugins"`.
|
|
|
|
|
*/
|
|
'directory' => env('PLUGINS_DIR'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Plugins Assets URL
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The URL to access plugin's assets (CSS, JavaScript etc.).
|
|
| Defaults to `http://site_url/plugins`.
|
|
|
|
|
*/
|
|
'url' => env('PLUGINS_URL'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Plugins Market Source
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Specify where to get plugins' metadata for plugin market.
|
|
|
|
|
*/
|
|
'registry' => env(
|
|
'PLUGINS_REGISTRY',
|
|
'https://gplane.coding.net/p/blessing-skin-plugins-dist/d/blessing-skin-plugins-dist/git/raw/master/registry_{lang}.json'
|
|
),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Plugins Market Localization
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Supported languages of plugins market registry will be listed here.
|
|
|
|
|
*/
|
|
'locales' => ['en', 'zh_CN'],
|
|
];
|