當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Client::repos方法代碼示例

本文整理匯總了PHP中Github\Client::repos方法的典型用法代碼示例。如果您正苦於以下問題:PHP Client::repos方法的具體用法?PHP Client::repos怎麽用?PHP Client::repos使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Github\Client的用法示例。


在下文中一共展示了Client::repos方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getProject

 /**
  * {@inheritdoc}
  */
 public function getProject($name)
 {
     return $this->requestProject($name, function ($name) {
         list($username, $repo) = explode('/', $name);
         return $this->client->repos()->show($username, $repo);
     }, function ($data) {
         return new GithubProject($data, $this->client, $this->badgeFactory);
     });
 }
開發者ID:digitalkaoz,項目名稱:issues,代碼行數:12,代碼來源:GithubTracker.php

示例2: getFile

 /**
  * gets a file (content) from the repository.
  *
  * @param string $filename
  *
  * @return string
  */
 protected function getFile($filename)
 {
     try {
         $file = $this->client->repos()->contents()->show($this->raw['owner']['login'], $this->raw['name'], $filename);
         if ('base64' === $file['encoding']) {
             return base64_decode($file['content'], true);
         }
     } catch (\Exception $e) {
         //file not found
     }
 }
開發者ID:digitalkaoz,項目名稱:issues,代碼行數:18,代碼來源:GithubProject.php

示例3: getStars

 public function getStars()
 {
     $owner = $this->setting('owner');
     $repo = $this->setting('repository');
     $data = [];
     $data['subscribers'] = $this->github->repos()->subscribers($owner, $repo);
     $data['issues'] = $this->github->issues()->all($owner, $repo, ['state' => $this->setting('show.issues.state'), 'sort' => $this->setting('show.issues.sort')]);
     $data['releases'] = $this->github->repos()->releases()->all($owner, $repo);
     $data['downloads'] = $this->github->repos()->downloads()->all($owner, $repo);
     $data['forks'] = $this->github->repos()->forks()->all($owner, $repo);
     return $data;
 }
開發者ID:docit,項目名稱:github-hook,代碼行數:12,代碼來源:GitShow.php

示例4: it_returns_the_badges

 public function it_returns_the_badges(Client $client, Repo $api, Contents $content)
 {
     $client->repos()->willReturn($api);
     $api->contents()->willReturn($content);
     $content->show('foo', 'bar', '.travis.yml')->shouldBeCalled()->willReturn(['encoding' => 'base64', 'content' => base64_encode('{}')]);
     $content->show('foo', 'bar', 'composer.json')->shouldBeCalled()->willReturn(['encoding' => 'base64', 'content' => base64_encode('{ "name" : "foo/bar"}')]);
     $this->getBadges()->shouldBeArray();
     $this->getBadges()->shouldHaveCount(3);
 }
開發者ID:digitalkaoz,項目名稱:issues,代碼行數:9,代碼來源:GithubProjectSpec.php

示例5: it_returns_a_list_of_Projects_on_findProjects

 public function it_returns_a_list_of_Projects_on_findProjects(Client $client, Repo $repoApi, User $userApi)
 {
     $client->repos()->willReturn($repoApi);
     $repoApi->show('foo', 'bar')->willReturn(['full_name' => 'foo/bar']);
     $client->user()->willReturn($userApi);
     $userApi->repositories('foo')->willReturn([['full_name' => 'foo/bar']]);
     $projects = $this->findProjects('foo/[bar|bazz]+$');
     $projects->shouldBeArray();
     $projects['foo/bar']->shouldHaveType('Rs\\Issues\\Project');
     $projects['foo/bar']->shouldHaveType('Rs\\Issues\\Github\\GithubProject');
 }
開發者ID:digitalkaoz,項目名稱:issues,代碼行數:11,代碼來源:GithubTrackerSpec.php


注:本文中的Github\Client::repos方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。