Skip to content

Commit

Permalink
Create your first Magento module
Browse files Browse the repository at this point in the history
  • Loading branch information
markshust committed Sep 22, 2023
0 parents commit 6cbe33c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
4 changes: 4 additions & 0 deletions etc/module.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Macademy_Jumpstart"/>
</config>
11 changes: 11 additions & 0 deletions registration.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php

declare(strict_types=1);

use Magento\Framework\Component\ComponentRegistrar;

ComponentRegistrar::register(
ComponentRegistrar::MODULE,
'Macademy_Jumpstart',
__DIR__,
);

0 comments on commit 6cbe33c

Please sign in to comment.