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