Skip to content

Commit

Permalink
Merge pull request #40 from VladyslavSikailo/VladyslavSikailo-patch-1
Browse files Browse the repository at this point in the history
Remove setup_version from module.xml
  • Loading branch information
DavidLambauer authored Aug 21, 2023
2 parents 64944e2 + 072ba9d commit 8be34aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions module-development.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ an example `module.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="Vendor_Module" setup_version="1.0.0">
<module name="Vendor_Module">
<sequence>
<module name="Magento_Cms"/>
</sequence>
</module>
</config>
```

In this example, `Vendor_Module` is the module's name, and `1.0.0` is the version. The `<sequence>` tag defines any
In this example, `Vendor_Module` is the module's name. The `<sequence>` tag defines any
modules that your module depends on. In this case, it depends on `Magento_Cms`.

## Module Configuration
Expand Down

0 comments on commit 8be34aa

Please sign in to comment.