Currently according to Magento/Framework/Module/etc/module.xsd the pattern for module name is the following:
[A-Z]+[a-z0-9]{1,}_[A-Z]+[A-Z0-9a-z]{1,}
Which means neither package name nor module name can not contain from caps only or even have a camel case. Is there any reason for this?
Currently according to
Magento/Framework/Module/etc/module.xsdthe pattern for module name is the following:Which means neither package name nor module name can not contain from caps only or even have a camel case. Is there any reason for this?