Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

---

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "mageforge/base",
"name": "openforgeproject/mageforge",
"description": "Magento 2 module for frontend wizardry~",
"license": "GPL-3.0",
"type": "magento2-module",
Expand All @@ -8,7 +8,7 @@
"registration.php"
],
"psr-4": {
"MageForge\\Base\\": "src/"
"OpenForgeProject\\MageForge\\": "src/"
}
}
}
2 changes: 1 addition & 1 deletion src/Console/Command/VersionCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -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';

/**
Expand Down
2 changes: 1 addition & 1 deletion src/etc/module.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd"
>
<module name="MageForge_Base" />
<module name="OpenForgeProject_MageForge" />
</config>
2 changes: 1 addition & 1 deletion src/registration.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@

ComponentRegistrar::register(
ComponentRegistrar::MODULE,
'MageForge_Base',
'OpenForgeProject_MageForge',
__DIR__
);
Loading