k10r / deployment
Adds some helpers for shopware-deployment
Installs: 21 150
Dependents: 0
Suggesters: 0
Security: 0
Stars: 13
Watchers: 3
Forks: 2
Open Issues: 1
Type:shopware-core-plugin
pkg:composer/k10r/deployment
Requires
- composer/installers: ~1.0
Requires (Dev)
- k10r/codestyle: ^1.0
This package is auto-updated.
Last update: 2025-10-18 17:20:54 UTC
README
K10rDeployment adds some helpful console commands for automatic deployments to Shopware 5.
Usage
Install with composer
- Change to your root installation of Shopware
- Run command
composer require k10r/deployment - Make sure composer dependencies are installed during your deployment
- Activate the plugin during your deployment using the Shopware command line interface (
php bin/console sw:plugin:reinstall K10rDeployment)
Zip/Git installation
- Download the ZIP or clone this repository into your
engine/Shopware/Plugins/Local/Core/folder. - Activate the plugin during your deployment using the Shopware command line interface (
php bin/console sw:plugin:reinstall K10rDeployment) - You can now use any of the commands listed below
Commands
Compile Theme
Compiles the theme for all shops.
- Usage:
php bin/console k10r:theme:compile
Deactivate a Plugin
Deactivates a given plugin.
- Usage:
php bin/console k10r:plugin:deactivate <pluginName>
Install, Update and Activate a Plugin
Installs a plugin and updates it, if necessary. This command does not fail, if the plugin is already installed (the default sw:plugin:install command fails).
- Usage:
php bin/console k10r:plugin:install [--activate] <pluginName>
Use the optional --activate option to activate the plugin after the installation.
Update Shop Settings
Updates the settings of a subshop
- Usage/Example:
php bin/console k10r:store:update [--store 1] [--name <NewShopName] [--host new.example.com] [--path /staging] [--title "DEV! Shop"] [--theme MyAwesomeTheme]
Parameters
store: Shop ID of settings to be set, if not set, default-shop will be usedname: Sets the name of a shophost: Sets the hostname of a shoppath: Sets the path of the shop relativ to the hostname (e.g. new.example.com/staging)title: Sets the title of the shoptheme: Sets the theme of the shop, based on the given template namesecure: Activate SSL on the shop
Update Theme Options
- Usage/Example:
php bin/console k10r:theme:update --theme MyAweSomeTheme [--shop 1] --setting "text-color" --value "#FF0000"
Parameters
theme: Name of the theme for settings to be setshop: Shop ID of settings to be set, if not set, default-shop will be usedsetting: Name of the setting to be setvalue: Value to be set
Check if a shopware update is necessary
Verifies if an update is needed for the application to be on a requested version. Return code 0 means an update is needed.
- Usage:
php bin/console k10r:update:needed <targetVersion>
Update Configuration
- Usage/Example:
php bin/console k10r:config:set [--shop 1] "noaccountdisable" "true"
Parameters
shop: Shop ID of settings to be set, if not set, default-shop will be used
Arguments
key: Name of the configuration element to be setvalue: Value to be set
Fetch Configuration
Retrieves the plugin configuration and display it inside the console.
- Usage/Example:
php bin/console k10r:config:get pluginName
Arguments
pluginName: Name of the plugin
Example Response:
$ ./bin/console k10r:config:get PluginName +---------------------+-----------------+------------+---------------+ | Config Eement | Shop ID: 1 | Shop ID: 2 | Default Value | +---------------------+-----------------+------------+---------------+ | Element Name | Value | | | | Other Element | Other Value | | | +---------------------+-----------------+------------+---------------+
Clear Cache
Clear specific caches like in backend performance modul
- Usage/Examples:
php bin/console k10r:clear:cache --allphp bin/console k10r:clear:cache --frontendphp bin/console k10r:clear:cache --config --template
Options
all: All cachesfrontend: All frontend related cachesbackend: All backend related cachesconfig: Shopware configuration cachetemplate: Template cachetheme: Theme cachehttp: HTTP cacheproxy: Doctrine Annotations and Proxiessearch: Search cacherouter: SEO URL index
License
MIT licensed, see LICENSE.md