mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2025-02-11 14:39:34 +08:00
36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Plugins Directory
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The absolute path for loading plugins.
|
|
| Defaults to `base_path()."/plugins"`.
|
|
|
|
|
*/
|
|
'directory' => menv('PLUGINS_DIR'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Plugins Assets URL
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The URL to access plugin's assets (CSS, JavaScript etc.).
|
|
| Defaults to `http://site_url/plugins`.
|
|
|
|
|
*/
|
|
'url' => menv('PLUGINS_URL'),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Plugins Market Source
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Specify where to get plugins' metadata for plugin market.
|
|
|
|
|
*/
|
|
'registry' => menv('PLUGINS_REGISTRY', 'https://coding.net/u/printempw/p/bs-plugins-archive/git/raw/master/plugins.json'),
|
|
];
|