Skip to content

Options

Available CLI parameters

Name Description
package The pre-configured plugin package you would like to install

With the first parameter you can pass on the package name of the plugin package group you have defined in your config file.

Example usage: kirby x:plugins:install seo

Available config options

Config namespace: genxbe.kx-devutils.plugins

Name Default Description
packages [ ] An array with the list of plugins (repo names) that need to be installed with this package

Example configuration

site/config/config.php
<?php
return [
    ...
    'genxbe.kx-devutils.plugins' => [
        'packages' => [
            'seo' => [
                'bnomei/kirby3-feed',
                'tobimori/kirby-seo',
            ],
            'favourites' => [
                'genxbe/kirby3-ray',
                'bnomei/autoloader-for-kirby',
                'bnomei/kirby3-feed',
            ],
        ]
    ],
    ...
];