-
Notifications
You must be signed in to change notification settings - Fork 2
New Module Templates
Carlo Tasca edited this page Dec 28, 2022
·
2 revisions
<?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="{{module}}"/>
</config>
<?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="{{module}}">
<sequence>
<module name="" />
</sequence>
</module>
</config>
{{php}}
declare(strict_types=1);
use Magento\Framework\Component\ComponentRegistrar;
ComponentRegistrar::register(
ComponentRegistrar::MODULE,
"{{module}}",
__DIR__
);