diff --git a/CHANGELOG.md b/CHANGELOG.md index 5cb4cbc..709ba4d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. --- -## 0.1.0 +## UNRELEASED - added trunk support - added GitHub `issue` and `feature` templates @@ -17,6 +17,7 @@ All notable changes to this project will be documented in this file. - added Codacy Badge to `README.md` - changed Repository URLs - added codacy code-quality badge to `README.md` +- moved to OpenForgeProject --- diff --git a/composer.json b/composer.json index fa411e2..49dd59d 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,5 @@ { - "name": "mageforge/base", + "name": "openforgeproject/mageforge", "description": "Magento 2 module for frontend wizardry~", "license": "GPL-3.0", "type": "magento2-module", @@ -8,7 +8,7 @@ "registration.php" ], "psr-4": { - "MageForge\\Base\\": "src/" + "OpenForgeProject\\MageForge\\": "src/" } } } diff --git a/src/Console/Command/VersionCommand.php b/src/Console/Command/VersionCommand.php index a73c4ba..26260db 100644 --- a/src/Console/Command/VersionCommand.php +++ b/src/Console/Command/VersionCommand.php @@ -14,7 +14,7 @@ class VersionCommand extends Command { - private const API_URL = 'https://api.github.com/repos/mage-forge/base/releases/latest'; + private const API_URL = 'https://api.github.com/repos/openforgeproject/mageforge/releases/latest'; private const UNKNOWN_VERSION = 'Unknown'; /** diff --git a/src/etc/module.xml b/src/etc/module.xml index 13e52dc..e37cfa0 100644 --- a/src/etc/module.xml +++ b/src/etc/module.xml @@ -3,5 +3,5 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd" > - + diff --git a/src/registration.php b/src/registration.php index 6fe54bf..06a62f1 100644 --- a/src/registration.php +++ b/src/registration.php @@ -6,6 +6,6 @@ ComponentRegistrar::register( ComponentRegistrar::MODULE, - 'MageForge_Base', + 'OpenForgeProject_MageForge', __DIR__ );