Devin Smith 41e8600690 more deployment changes
partial #3787
added support for deployment to any repo path.
added tagging system
2014-11-18 16:08:23 -08:00

27 lines
800 B
PHP
Executable File

<?php
namespace Github\Api\Repository;
use Github\Api\AbstractApi;
/**
* @link http://developer.github.com/v3/repos/forks/
* @author Joseph Bielawski <stloyd@gmail.com>
*/
class Forks extends AbstractApi
{
public function all($username, $repository, array $params = array())
{
if (isset($params['sort']) && !in_array($params['sort'], array('newest', 'oldest', 'watchers'))) {
$params['sort'] = 'newest';
}
return $this->get('repos/'.rawurlencode($username).'/'.rawurlencode($repository).'/forks', array_merge(array('page' => 1), $params));
}
public function create($username, $repository, array $params = array())
{
return $this->post('repos/'.rawurlencode($username).'/'.rawurlencode($repository).'/forks', $params);
}
}