public function Github_Api_Repo::getRepoCollaborators in Bibliography Module 7.2
Get the collaborators of a repository http://develop.github.com/p/repo.html
Parameters
string $username the user who owns the repo:
string $repo the name of the repo:
Return value
array list of the repo collaborators
File
- modules/
CiteProc/ Github/ Api/ Repo.php, line 223
Class
- Github_Api_Repo
- Searching repositories, getting repository information and managing repository information for authenticated users.
Code
public function getRepoCollaborators($username, $repo) {
$response = $this
->get('repos/show/' . urlencode($username) . '/' . urlencode($repo) . '/collaborators');
return $response['collaborators'];
}