2017 © Pedro Peláez
 

library github-api

GitHub API v3 client

image

kobermeit/github-api

GitHub API v3 client

  • Thursday, March 23, 2017
  • by kobermeit
  • Repository
  • 1 Watchers
  • 0 Stars
  • 1,492 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 447 Forks
  • 0 Open issues
  • 51 Versions
  • 0 % Grown

The README.md

PHP GitHub API 2.0

In 2.0 lib no longer uses guzzle 3.7, instead it has an HTTPlug abstraction layer., (*1)

For old version please check:, (*2)

Build Status StyleCI, (*3)

A simple Object Oriented wrapper for GitHub API, written with PHP5., (*4)

Uses GitHub API v3. The object API is very similar to the RESTful API., (*5)

Features

  • Follows PSR-4 conventions and coding standard: autoload friendly
  • Light and fast thanks to lazy loading of API classes
  • Extensively tested and documented

Requirements

  • PHP >= 5.5
  • Guzzle library,
  • (optional) PHPUnit to run tests.

Autoload

The new version of php-github-api using Composer. The first step to use php-github-api is to download composer:, (*6)

$ curl -s http://getcomposer.org/installer | php

Then run the following command to require the library:, (*7)

$ php composer.phar require knplabs/github-api php-http/guzzle6-adapter

Why php-http/guzzle6-adapter? We are decoupled form any HTTP messaging client with help by HTTPlug. Read about clients in our docs., (*8)

Using Laravel?

Laravel GitHub by Graham Campbell might interest you., (*9)

Basic usage of php-github-api client

<?php

// This file is generated by Composer
require_once 'vendor/autoload.php';

$client = new \Github\Client();
$repositories = $client->api('user')->repositories('ornicar');

From $client object, you can access to all GitHub., (*10)

Cache usage

This example uses the PSR6 cache pool redis-adapter. See http://www.php-cache.com/ for alternatives., (*11)

<?php

// This file is generated by Composer
require_once 'vendor/autoload.php';

use Cache\Adapter\Redis\RedisCachePool;

$client = new \Redis();
$client->connect('127.0.0.1', 6379);
// Create a PSR6 cache pool
$pool = new RedisCachePool($client);

$client = new \Github\Client();
$client->addCache($pool);

// Do some request

// Stop using cache
$client->removeCache();

Using cache, the client will get cached responses if resources haven't changed since last time, without reaching the X-Rate-Limit imposed by github., (*12)

Documentation

See the doc directory for more detailed documentation., (*13)

License

php-github-api is licensed under the MIT License - see the LICENSE file for details, (*14)

Credits

KnpLabs Team, (*15)

Contributors

Thanks to GitHub for the high quality API and documentation., (*16)

The Versions

26/07 2016

1.7.x-dev

1.7.9999999.9999999-dev https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

26/07 2016

1.7.1

1.7.1.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

29/05 2016

1.7.0

1.7.0.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

20/05 2016

1.6.1

1.6.1.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

24/02 2016

1.6.0

1.6.0.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

11/10 2015

1.5.1

1.5.1.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

20/08 2015

1.4.15

1.4.15.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

20/08 2015

1.5.0

1.5.0.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

03/07 2015

1.4.14

1.4.14.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

03/07 2015

1.4.13

1.4.13.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

17/06 2015

1.4.12

1.4.12.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

26/05 2015

1.4.11

1.4.11.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

25/05 2015

1.4.10

1.4.10.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

21/05 2015

1.4.9

1.4.9.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

05/05 2015

1.4.8

1.4.8.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

07/04 2015

1.4.7

1.4.7.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

07/04 2015

1.4.6

1.4.6.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

28/03 2015

1.4.5

1.4.5.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

23/02 2015

1.4.4

1.4.4.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

18/02 2015

1.4.3

1.4.3.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

13/02 2015

1.4.2

1.4.2.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

23/12 2014

1.4.1

1.4.1.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

13/12 2014

1.4.0

1.4.0.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

23/09 2014

1.3.1

1.3.1.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

21/08 2014

1.3.0

1.3.0.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

01/08 2014

1.2.7

1.2.7.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

01/07 2014

1.2.6

1.2.6.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

25/06 2014

1.2.5

1.2.5.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

24/06 2014

1.2.4

1.2.4.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

17/06 2014

1.2.3

1.2.3.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

02/06 2014

1.2.2

1.2.2.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

05/01 2014

1.2.1

1.2.1.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

02/11 2013

1.2.0

1.2.0.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

22/10 2013

1.1.5

1.1.5.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist gh

30/08 2013

1.1.4

1.1.4.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

api github gist gh

27/12 2012

1.1.3

1.1.3.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

api github gist gh

21/12 2012

1.1.2

1.1.2.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

api github gist gh

25/10 2012

1.1.1

1.1.1.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

api github gist gh

01/10 2012

1.1.0

1.1.0.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

api github gist gh

07/09 2012

1.0.2

1.0.2.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

api github gist

05/09 2012

1.0.1

1.0.1.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

api github gist

19/07 2012

1.0.0

1.0.0.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

api github gist

12/07 2012

0.1

0.1.0.0 https://github.com/KnpLabs/php-github-api

GitHub API v3 client

  Sources   Download

MIT

The Requires

 

The Development Requires

api github gist