Closed ashon-ikon closed 7 years ago
The current parser regex does not accept tokenized git remote URLs. This pull request seeks to expand the pattern.
Just by altering the regular expression from
#^[^\s]+\s+(?:git@|(?:git|https?)://)([^:/]+)(?:/|:)([^/]+)/([^/\s]+?)(?:\.git)?(?:\s|\n)#m
to
#^[^\s]+\s+(?:[^\s]+@|(?:git|https?)://)([^:/]+)(?:/|:)([^/]+)/([^/\s]+?)(?:\.git)?(?:\s|\n)#m
A big thank @schmittjoh for accepting the pull request swiftly.
Please do you mind updating the Phar file as well, soon. Thanks
The current parser regex does not accept tokenized git remote URLs. This pull request seeks to expand the pattern.
Previous Scenarios
Current Scenarios
Just by altering the regular expression from
to