From 3e5b5b183d43fb694ed87d7692d63f9decf73972 Mon Sep 17 00:00:00 2001 From: denisdulici Date: Tue, 19 Nov 2019 12:39:35 +0300 Subject: [PATCH] updated module json --- app/Console/Stubs/Modules/json.stub | 6 +++--- modules/OfflinePayments/module.json | 6 +++--- modules/PaypalStandard/module.json | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/app/Console/Stubs/Modules/json.stub b/app/Console/Stubs/Modules/json.stub index 6e6519ed6..c7b29214a 100644 --- a/app/Console/Stubs/Modules/json.stub +++ b/app/Console/Stubs/Modules/json.stub @@ -1,14 +1,14 @@ { "alias": "$ALIAS$", "version": "1.0.0", - "category": "accounting", "active": 1, - "order": 0, "providers": [ "$MODULE_NAMESPACE$\\$STUDLY_NAME$\\Providers\\Main" ], "aliases": {}, "files": [], "requires": [], - "settings": [] + "reports": [], + "settings": [], + "widgets": [] } diff --git a/modules/OfflinePayments/module.json b/modules/OfflinePayments/module.json index e5b05f4f0..6f8dc5cb1 100644 --- a/modules/OfflinePayments/module.json +++ b/modules/OfflinePayments/module.json @@ -1,14 +1,14 @@ { "alias": "offline-payments", "version": "2.0.0", - "category": "payment-method", "active": 1, - "order": 0, "providers": [ "Modules\\OfflinePayments\\Providers\\Main" ], "aliases": {}, "files": [], "requires": [], - "settings": [] + "reports": [], + "settings": [], + "widgets": [] } diff --git a/modules/PaypalStandard/module.json b/modules/PaypalStandard/module.json index 9d229a893..270f5a10f 100644 --- a/modules/PaypalStandard/module.json +++ b/modules/PaypalStandard/module.json @@ -2,15 +2,14 @@ "alias": "paypal-standard", "icon": "fab fa-paypal", "version": "2.0.0", - "category": "payment-method", "active": 1, - "order": 0, "providers": [ "Modules\\PaypalStandard\\Providers\\Main" ], "aliases": {}, "files": [], "requires": [], + "reports": [], "settings": [ { "type": "textGroup", @@ -77,5 +76,6 @@ "icon": "sort", "attributes": {} } - ] + ], + "widgets": [] }