From 8bd8329e433f42e3578496e3a981493b134031da Mon Sep 17 00:00:00 2001 From: Alfred Bez Date: Thu, 18 Apr 2019 12:16:18 +0200 Subject: [PATCH] update instructions to install in oxid v5 & v6 --- README.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ab67f02..859c776 100644 --- a/README.md +++ b/README.md @@ -2,25 +2,35 @@ HTML minify ============================= Enables Smarty 'trimwhitespace' Outputfilter to minify HTML Code +Versions +------------ +| OXID eShop Version | Module Version | +|------|------| +| v5.x | v0.x | +| v6.x | v1.x | + + Download ------------ first you need [composer](https://getcomposer.org/download/) add the module to your composer.json - * via command line ```composer.phar require alfredbez/ab_htmlmin dev-master``` + * via command line ```composer require alfredbez/ab_htmlmin:"^1.0"``` * OR * manually ``` { "require": { - "alfredbez/ab_htmlmin": "dev-master" + "alfredbez/ab_htmlmin": "^1.0"" } } ``` +This will install the OXID-v6 module. If you need the module for an older shop just use `v0.1` instead of `v1.0`. + ---- **Don't forget to activate module in the OXID backend** ----- \ No newline at end of file +----