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' => 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://work.prinzeugen.net/blessing-skin-server/plugins.json'),
|
|
];
|