blessing-skin-server/config/plugins.php

40 lines
1.2 KiB
PHP
Raw Normal View History

<?php
return [
/*
|--------------------------------------------------------------------------
| Plugins Directory
|--------------------------------------------------------------------------
|
| The absolute path for loading plugins.
| Defaults to `base_path()."/plugins"`.
|
*/
2019-02-27 23:44:50 +08:00
'directory' => env('PLUGINS_DIR'),
/*
|--------------------------------------------------------------------------
| Plugins Assets URL
|--------------------------------------------------------------------------
|
| The URL to access plugin's assets (CSS, JavaScript etc.).
| Defaults to `http://site_url/plugins`.
|
*/
2019-02-27 23:44:50 +08:00
'url' => env('PLUGINS_URL'),
2018-08-19 11:39:14 +08:00
/*
|--------------------------------------------------------------------------
| Plugins Market Source
|--------------------------------------------------------------------------
|
| Specify where to get plugins' metadata for plugin market.
|
*/
2019-04-01 16:12:11 +08:00
'registry' => env(
'PLUGINS_REGISTRY',
'https://dev.azure.com/blessing-skin/0dc12c60-882a-46a2-90c6-9450490193a2/_apis/'.
2020-01-02 18:13:39 +08:00
'git/repositories/d5283b63-dfb0-497e-ad17-2860a547596f/Items?path=%2Fregistry-preview.json'
2019-04-01 16:12:11 +08:00
),
];