mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00
18 lines
308 B
PHP
18 lines
308 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Modules\Plugins\Config;
|
|
|
|
use CodeIgniter\Config\BaseConfig;
|
|
|
|
class Plugins extends BaseConfig
|
|
{
|
|
public string $folder = PLUGINS_PATH;
|
|
|
|
/**
|
|
* @var list<string>
|
|
*/
|
|
public array $repositories = ['https://castopod.org/plugins/repository.json'];
|
|
}
|