<?php

$ch = curl_init("https://api.github.com");

curl_setopt($ch, CURLOPT_URL, 'https://api.github.com/repos/hpcugent/easybuild-framework/pulls');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

print(curl_exec($ch));
curl_close($ch);
?>
