Plugin

plugin:install

Install plugin

Syntax

joomla plugin:install <package>

You can install plugins into the Joomla Console to add new commands or extend the symlinking logic. Plugins are installed using Composer and must be available on Packagist. You then pass their package name to this command. In the case of our example, the package name is joomlatools/console-backup:

joomla plugin:install joomlatools/console-backup

You can specify a specific version or branch by appending the version number to the package name. Version constraints follow Composer’s convention:

joomla plugin:install joomlatools/console-backup:dev-develop

Refer to the online documentation at the following URL on how to write your own plugins: http://developer.joomlatools.com/tools/console/plugins.html#creating-custom-plugins

Arguments

package

The Composer package name and version. Example: vendor/foo-bar:1.*

plugin:list

List installed plugins

Syntax

joomla plugin:list

plugin:uninstall

Used for uninstalling plugins

Syntax

joomla plugin:uninstall <package>

Arguments

package

The composer package containing the plugin to uninstall