mirror of
https://github.com/doctrine/jira-github-issues.git
synced 2026-03-24 06:52:17 +01:00
9 lines
297 B
PHP
9 lines
297 B
PHP
<?php
|
|
|
|
$issueMap = [];
|
|
foreach (['DBAL', 'DDC', 'DCOM'] as $project) {
|
|
$issueMap = array_merge($issueMap, json_decode(file_get_contents('data/' . $project . '.issues.json'), true));
|
|
}
|
|
|
|
file_put_contents('data/issues.json', json_encode(['doctrine_issue_map' => $issueMap], JSON_PRETTY_PRINT));
|