evolution7 / craft-console
CLI for CraftCMS.
Installs: 14 198
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 5
Forks: 0
Open Issues: 0
Type:craft-plugin
Requires
- php: >=5.3.0
- composer/installers: ~1.0
This package is not auto-updated.
Last update: 2024-10-26 18:17:25 UTC
README
#Craft Console
Command/Task runner for Craft CMS. This enables you to run Craft's commands from the CLI.
Installation
This plugin can be easily added to any composer-managed Craft project.
composer require evolution7/craft-console
##Usage
From the project root, run:
vendor/bin/console
Alternatively, you can specify a bin
folder in composer.json
and call the executable from there ($projectRoot/bin/console
).
"config": {
"bin-dir": "bin"
},
This will give you a list of available commands.
Yii command runner (based on Yii v1.1.16)
Usage: bin/console <command-name> [parameters...]
The following commands are available:
- base
- migrate
- querygen
- shell
- sync
To see individual command help, use the following:
bin/console help <command-name>
Synchronise plugins between deployments
The plugin comes with an example sync
task that activates the plugins you want (to be run on deployment):
bin/console sync plugin
This task reads the content of craft/config/plugins.php
and activates/deactivates plugins accordingly:
<?php
//craft/config/plugins.php
return [
'activePlugins' => [
'Project',
'ArtVandelay',
'Bugsnag',
'Console',
'SproutForms',
'SproutSeo',
]
];
Output:
$ php bin/console sync plugin
Synchronizing plugins
Plugin ArtVandelay is already active.
Installing Bugsnag plugin.
Plugin Console is already active.
Enabling Project plugin.
Plugin SproutForms is already active.
Plugin SproutSeo is already active.