blob: dfff87a755b10d5b82b283d192d66113a39108a6 [file]
<?php
$json = file_get_contents('http://local.projects.eclipse.org/json/repos/git');
foreach(json_decode($json) as $project => $repos) {
foreach ($repos as $repo) {
echo "$project\t$repo\n";
}
}
?>