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": [] }