commit d7df30d7b1d1e748bf94ff7d5dec51f28c0b2d7c Author: Daniel Seifert Date: Fri Jul 19 10:31:00 2019 +0200 initial diff --git a/README.md b/README.md new file mode 100644 index 0000000..f4b7ab3 --- /dev/null +++ b/README.md @@ -0,0 +1,26 @@ +# Demodata replacement if demodata aren't used (Community Edition) + +This package removes the unused OXID demodata package from the shop. + +## Hint + +For installations of the Professional Edition and Enterprise Edition please use the packages under "d3/oxideshop-demodata-pe-replacement" (PE) or "d3/oxideshop-demodata-ee-replacement" (EE). + +## Install + +if the demodata aren't used and should be removed from the shop installation + +* Run this composer statement in your shop. Adjust this instruction if your installation requires it. + + `composer require d3/oxideshop-demodata-ce-replacement --update-no-dev` + +* Remove the installed demo data (e.g. pictures) from your installation in the source/out/pictures directory. + +## Uninstall + +If the demo data is to be reused + +* Manually clean up the replacement module entry (d3/oxideshop-demodata-ce-replacement) from the vendor/composer/installed.json and composer.lock files. +* Run this composer statement in your shop. Adjust this instruction if your installation requires it. + + `composer remove d3/oxideshop-demodata-ce-replacement --update-no-dev` diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..0286f0a --- /dev/null +++ b/composer.json @@ -0,0 +1,11 @@ +{ + "name": "d3/oxideshop-demodata-ce-replacement", + "description": "Empty replacement for the CE demo data when not in use", + "version": "1.0.0", + "require": { + "oxid-esales/oxideshop-metapackage-ce": "^6.0" + }, + "replace": { + "oxid-esales/oxideshop-demodata-ce": "*" + } +} \ No newline at end of file