Skip to content

New Module Templates

Carlo Tasca edited this page Dec 28, 2022 · 2 revisions

etc/module.xml template

module.tpl.xml

<?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>

module__sequence.tpl.xml

<?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>

registration.php template

registration.tpl.php

{{php}}
declare(strict_types=1);

use Magento\Framework\Component\ComponentRegistrar;

ComponentRegistrar::register(
    ComponentRegistrar::MODULE,
    "{{module}}",
    __DIR__
);

Clone this wiki locally