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:181pull/3678/head
parent
825b4b9c63
commit
87b7de4d0a
|
@ -178,7 +178,7 @@ class VersionParser
|
|||
*/
|
||||
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'].".";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue