Fix parsing of multi-line arrays in funding yml, fixes #10784
parent
1e9210f7b1
commit
a76a1c9fc2
|
@ -234,6 +234,10 @@ class GitHubDriver extends VcsDriver
|
|||
foreach (Preg::split('{\r?\n}', $funding) as $line) {
|
||||
$line = trim($line);
|
||||
if (Preg::isMatch('{^(\w+)\s*:\s*(.+)$}', $line, $match)) {
|
||||
if ($match[2] === '[') {
|
||||
$key = $match[1];
|
||||
continue;
|
||||
}
|
||||
if (Preg::isMatch('{^\[(.*)\](?:\s*#.*)?$}', $match[2], $match2)) {
|
||||
foreach (array_map('trim', Preg::split('{[\'"]?\s*,\s*[\'"]?}', $match2[1])) as $item) {
|
||||
$result[] = array('type' => $match[1], 'url' => trim($item, '"\' '));
|
||||
|
@ -244,8 +248,13 @@ class GitHubDriver extends VcsDriver
|
|||
$key = null;
|
||||
} elseif (Preg::isMatch('{^(\w+)\s*:\s*#\s*$}', $line, $match)) {
|
||||
$key = $match[1];
|
||||
} elseif ($key && Preg::isMatch('{^-\s*(.+)(\s+#.*)?$}', $line, $match)) {
|
||||
} elseif ($key && (
|
||||
Preg::isMatch('{^-\s*(.+)(\s+#.*)?$}', $line, $match)
|
||||
|| Preg::isMatch('{^(.+),(\s*#.*)?$}', $line, $match)
|
||||
)) {
|
||||
$result[] = array('type' => $key, 'url' => trim($match[1], '"\' '));
|
||||
} elseif ($key && $line === ']') {
|
||||
$key = null;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue