Yassine Doghri 3d0db5c64a feat(plugins): add spark commands to install, add, update and remove plugins using adaures' cpm
update js & php dependencies to latest and fix rector, phpstan and ecs issues
2025-09-22 17:34:36 +00:00

15 lines
252 B
PHP

<?php
declare(strict_types=1);
namespace Modules\Plugins\Config;
use CodeIgniter\Config\BaseConfig;
class Plugins extends BaseConfig
{
public string $folder = PLUGINS_PATH;
public string $repositoryUrl = 'https://plugins.castopod.org/';
}