1
0
Fork 0

Add the P character to the regex pattern

According to http://php.net/manual/en/function.preg-match.php and some other sources named groups should contain a 'P' character after the '?'

Without this, I receive the following error when running an update:

[ErrorException]
  preg_match(): Compilation failed: unrecognized character after (?< at offset 4

Exception trace:
 () at phar:///var/www/git/smmqa/app/admin/composer.phar/src/Composer/Package/Version/VersionParser.php:181
pull/3678/head
Chris Brand 2015-01-26 17:07:58 +02:00 committed by Chris Cain
parent 825b4b9c63
commit 87b7de4d0a
1 changed files with 1 additions and 1 deletions

View File

@ -178,7 +178,7 @@ class VersionParser
*/ */
public function parseNumericAliasPrefix($branch) public function parseNumericAliasPrefix($branch)
{ {
if (preg_match('/^(?<version>(\d+\\.)*\d+)(?:\.x)?-dev$/i', $branch, $matches)) { if (preg_match('/^(?P<version>(\d+\\.)*\d+)(?:\.x)?-dev$/i', $branch, $matches)) {
return $matches['version']."."; return $matches['version'].".";
} }