In Apigility documentation url contains module name. We added to generated module name own namespace. After this documentation has stopped working. We have found that problem is there https://github.com/zfcampus/zf-apigility-documentation/blob/master/config/module.config.php#L17 and we change regex to [a-zA-Z][a-zA-Z0-9_\\\\]+ what should cover namespace (MyNamespace\ApiName). However it doesn't work. One of working solution is [a-zA-Z][a-zA-Z0-9_%]+
In Apigility documentation url contains module name. We added to generated module name own namespace. After this documentation has stopped working. We have found that problem is there https://github.com/zfcampus/zf-apigility-documentation/blob/master/config/module.config.php#L17 and we change regex to
[a-zA-Z][a-zA-Z0-9_\\\\]+
what should cover namespace (MyNamespace\ApiName). However it doesn't work. One of working solution is[a-zA-Z][a-zA-Z0-9_%]+
First time reported in https://github.com/zendframework/zf2/pull/7409