From 0af051bb67a0d205ce0d27dabc5ca2f06aed226a Mon Sep 17 00:00:00 2001 From: Thomas Dartsch Date: Mon, 18 Nov 2019 22:24:14 +0100 Subject: [PATCH] update modules list update suggest list add "require-dev" --- README.md | 37 ++++++++++++++++++++++++++++++------- composer.json | 37 ++++++++++++++++++++++++++----------- 2 files changed, 56 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index afe2095..9af4d80 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,40 @@ # Recommended Modules (metapackage) -a requirement list of recommended modules for the OXID Shop +a requirement list of recommended modules for the OXID eShop +contains an additional list of other suggested modules ## Requirements -* OXID eSales eShop Compilation 6.0 + 6.1 +* OXID eSales eShop Compilation 6.0 ## Modules -* D3 Development Tool -* OXID Community Module Internals -* OXID Console -* OXID Module Configuration Im-/Exporter -* OXID eSales Captcha +### require +* Module Internals ~ OXID Community +* OXID Console ~ OXID PS +* OXID Module Configuration Im-/Exporter ~ OXID PS + +### require-dev +* D3 Development Tool ~ D3 +* OXID-DebugBar ~ FlorianPalme + +### suggest list +* D³ Auftragsmanager ~ D3 +* Disable Admin Elements ~ D3 +* AdminSearch ~ XID Community +* OXID Extended Order Admin ~ OXID Projects +* Facebook Social Plugins ~ OXID Projects +* Lexware Export ~ OXID Projects +* PDF Invoice ~ OXID Projects +* Statistics ~ OXID Projects +* Tags ~ OXID Projects +* Captcha ~ OXID Projects + +### suggest-dev list +* OXID SQL Logger ~ D3 +* Module Generator ~ OXID eSales +* GraphQL Base ~ OXID eSales +* Smarty to TWIG Converter ~ OXID eSales +* ## Installation diff --git a/composer.json b/composer.json index 519cc8e..d4af83f 100644 --- a/composer.json +++ b/composer.json @@ -25,18 +25,33 @@ "CC0-1.0" ], "require": { - "oxid-esales/oxideshop-metapackage-ce": "~6.0.0 || ~6.1.0", - "d3/devhelper": "^2.0", - "oxid-community/moduleinternals": "^1.0", - "oxid-professional-services/oxid-console": "^5.0", - "oxid-professional-services/oxid-modules-config": "^4.0", - "oxid-projects/captcha-module": "^2.0" + "oxid-esales/oxideshop-metapackage-ce": "*", + "oxid-community/moduleinternals": "*", + "oxid-professional-services/oxid-console": "*", + "oxid-professional-services/oxid-modules-config": "*" + }, + "require-dev": { + "d3/devhelper": "*", + "florianpalme/oxid-debugbar": "*" }, "suggest": { - "oxid-esales/azure-theme": "This is Azure Theme for OXID eShop.", - "oxid-esales/pdf-invoice-module": "This is Invoice PDF module for OXID eShop.", - "oxid-esales/extended-order-administration-module": "Extended Order Admin module for OXID eShop.", - "oxid-esales/tags-module": "This is a tags module for OXID eShop.", - "oxid-projects/statistics-module": "Logging and displaying statistics for OXID eShop." + "d3/ordermanager": "Lassen Sie wiederkehrende Aufgaben automatisch nach frei definierbaren Regeln ausführen.", + "d3/disableadminelements": "Hide unused menu items in the oxid eshop admin.", + "oxid-community/adminsearch": "Search OXID admin globally for products, categories, clients, etc.", + "oxid-esales/twig-admin-theme": "The admin theme for twig engine. NOTE! requires OXID >= 6.2.0", + "oxid-esales/twig-theme": "Templates based on the twig engine. NOTE! requires OXID >= 6.2.0", + "oxid-projects/extended-order-administration-module": "Extended Order Admin module for OXID eShop.", + "oxid-projects/facebook-module": "Facebook social plugins: Connect, Comments, Like, Invite, Facepile, Share.", + "oxid-projects/lexware-export-module": "This module exports order information into an XML format.", + "oxid-projects/pdf-invoice-module": "This is Invoice PDF module for OXID eShop.", + "oxid-projects/statistics-module": "Logging and displaying statistics for OXID eShop.", + "oxid-projects/tags-module": "This is a tags module for OXID eShop.", + "oxid-projects/captcha-module": "This is Captcha module for OXID eShop.", + + "d3/oxid-sql-logger": "[DEV] Returns all SQL queries into console of a Browser.", + "oxid-esales/module-generator": "[DEV] Folders structure, empty classes and metadata generation for new OXID eShop modules.", + "oxid-esales/graphql-base": "[DEV] A basic GraphQL implementation for the OXID eShop.", + "oxid-esales/smarty-to-twig-converter": "[DEV] A Tool to convert smarty template engine to twig template engine." + } }