From 9a2bab36945b421bd942dcd36481d7f2d92f8292 Mon Sep 17 00:00:00 2001 From: "@ChristelLoftus" <christel@bob.co.za> Date: Tue, 20 Aug 2024 12:13:31 +0200 Subject: [PATCH] update composer.json --- Model/Carrier/uData.php | 4 ++-- composer.json | 38 +++++++++++++++++--------------------- 2 files changed, 19 insertions(+), 23 deletions(-) diff --git a/Model/Carrier/uData.php b/Model/Carrier/uData.php index 47b5d8b..d173baa 100644 --- a/Model/Carrier/uData.php +++ b/Model/Carrier/uData.php @@ -12,12 +12,12 @@ class UData * * @var string */ - public const TRACKING = 'https://api.bobgo.co.za/tracking?channel=%s&tracking_reference=%s'; + public const TRACKING = 'https://api.dev.bobgo.co.za/tracking?channel=%s&tracking_reference=%s'; /** * Rates API Endpoint * * @var string */ - public const RATES_ENDPOINT = 'https://api.bobgo.co.za/rates-at-checkout/magento'; + public const RATES_ENDPOINT = 'https://api.dev.bobgo.co.za/rates-at-checkout/magento'; } diff --git a/composer.json b/composer.json index c150da7..624723d 100644 --- a/composer.json +++ b/composer.json @@ -1,29 +1,25 @@ { - "name": "bob-public-utils/bobgo-magento-extension", + "name": "bobgo/bobgo-magento-extension", "description": "Smart shipping and order management solution in South Africa", - "type": "magento2-module", - "version": "1.0.0", - "authors": [ - { - "name": "Bob Go", - "email": "support@bobgo.co.za", - "homepage": "https://www.bobgo.co.za" - } - ], - "license": [ - "AFL-3.0", - "OSL-3.0" - ], + "type": "magento2-module", + "version": "1.0.0", + "authors": [ + { + "name": "Bob Go", + "email": "support@bobgo.co.za", + "homepage": "https://www.bobgo.co.za" + } + ], + "license": "GPL-3.0-or-later", "require": { "php": "^7.4 || ^8.0 || ^8.2" }, - "autoload": { - "files": [ - "registration.php" - ], - "psr-4": { - "BobGroup\\BobGo\\": "Model/Carrier/" + "files": [ + "registration.php" + ], + "psr-4": { + "BobGroup\\BobGo\\": "" + } } - } } -- GitLab