2017-25 © Pedro Peláez
 

library github

GitHub Is A GitHub Bridge For Laravel 5

image

graham-campbell/github

GitHub Is A GitHub Bridge For Laravel 5

  • Monday, April 2, 2018
  • by graham-campbell
  • Repository
  • 20 Watchers
  • 273 Stars
  • 104,735 Installations
  • PHP
  • 12 Dependents
  • 0 Suggesters
  • 63 Forks
  • 2 Open issues
  • 33 Versions
  • 11 % Grown

The README.md

Laravel GitHub

Laravel GitHub was created by, and is maintained by Graham Campbell, and is a PHP GitHub API bridge for Laravel. It utilises my Laravel Manager package. Feel free to check out the change log, releases, security policy, license, code of conduct, and contribution guidelines., (*1)

Banner, (*2)

Build Status StyleCI Status Software License Packagist Downloads Latest Version , (*3)

Installation

This version requires PHP 8.1-8.4 and supports Laravel 10-12., (*4)

GitHub L5.5 L5.6 L5.7 L5.8 L6 L7 L8 L9 L10 L11 L12
7.8 :white_check_mark: :white_check_mark: :white_check_mark: :white_check_mark: :x: :x: :x: :x: :x: :x: :x:
8.9 :white_check_mark: :white_check_mark: :white_check_mark: :white_check_mark: :white_check_mark: :white_check_mark: :x: :x: :x: :x: :x:
9.8 :x: :x: :x: :x: :white_check_mark: :white_check_mark: :white_check_mark: :x: :x: :x: :x:
10.6 :x: :x: :x: :x: :white_check_mark: :white_check_mark: :white_check_mark: :white_check_mark: :x: :x: :x:
11.0 :x: :x: :x: :x: :x: :x: :white_check_mark: :white_check_mark: :x: :x: :x:
12.8 :x: :x: :x: :x: :x: :x: :white_check_mark: :white_check_mark: :white_check_mark: :white_check_mark: :x:
13.0 :x: :x: :x: :x: :x: :x: :x: :x: :white_check_mark: :white_check_mark: :white_check_mark:

To get the latest version, simply require the project using Composer:, (*5)

$ composer require "graham-campbell/github:^13.0"

Once installed, if you are not using automatic package discovery, then you need to register the GrahamCampbell\GitHub\GitHubServiceProvider service provider in your config/app.php., (*6)

You can also optionally alias our facade:, (*7)

        'GitHub' => GrahamCampbell\GitHub\Facades\GitHub::class,

Configuration

Laravel GitHub requires connection configuration., (*8)

To get started, you'll need to publish all vendor assets:, (*9)

$ php artisan vendor:publish

This will create a config/github.php file in your app that you can modify to set your configuration. Also, make sure you check for changes to the original config file in this package between releases., (*10)

There are two config options:, (*11)

Default Connection Name

This option ('default') is where you may specify which of the connections below you wish to use as your default connection for all work. Of course, you may use many connections at once using the manager class. The default value for this setting is 'main'., (*12)

GitHub Connections

This option ('connections') is where each of the connections are setup for your application. Example configuration has been included, but you may add as many connections as you would like. Note that the 5 supported authentication methods are: "application", "jwt", "none", "private", and "token"., (*13)

HTTP Cache

This option ('cache') is where each of the cache configurations setup for your application. Only the "illuminate" driver is provided out of the box. Example configuration has been included., (*14)

Usage

GitHubManager

This is the class of most interest. It is bound to the ioc container as 'github' and can be accessed using the Facades\GitHub facade. This class implements the ManagerInterface by extending AbstractManager. The interface and abstract class are both part of my Laravel Manager package, so you may want to go and checkout the docs for how to use the manager class over at that repo. Note that the connection class returned will always be an instance of Github\Client., (*15)

Facades\GitHub

This facade will dynamically pass static method calls to the 'github' object in the ioc container which by default is the GitHubManager class., (*16)

GitHubServiceProvider

This class contains no public methods of interest. This class should be added to the providers array in config/app.php. This class will setup ioc bindings., (*17)

Real Examples

Here you can see an example of just how simple this package is to use. Out of the box, the default adapter is main. After you enter your authentication details in the config file, it will just work:, (*18)

use GrahamCampbell\GitHub\Facades\GitHub;
// you can alias this in config/app.php if you like

GitHub::me()->organizations();
// we're done here - how easy was that, it just works!

GitHub::repo()->show('GrahamCampbell', 'Laravel-GitHub');
// this example is simple, and there are far more methods available

The github manager will behave like it is a Github\Client class. If you want to call specific connections, you can do with the connection method:, (*19)

use GrahamCampbell\GitHub\Facades\GitHub;

// the alternative connection is the other example provided in the default config
GitHub::connection('alternative')->me()->emails()->add('foo@bar.com');

// now we can see the new email address in the list of all the user's emails
GitHub::connection('alternative')->me()->emails()->all();

With that in mind, note that:, (*20)

use GrahamCampbell\GitHub\Facades\GitHub;

// writing this:
GitHub::connection('main')->issues()->show('GrahamCampbell', 'Laravel-GitHub', 2);

// is identical to writing this:
GitHub::issues()->show('GrahamCampbell', 'Laravel-GitHub', 2);

// and is also identical to writing this:
GitHub::connection()->issues()->show('GrahamCampbell', 'Laravel-GitHub', 2);

// this is because the main connection is configured to be the default
GitHub::getDefaultConnection(); // this will return main

// we can change the default connection
GitHub::setDefaultConnection('alternative'); // the default is now alternative

If you prefer to use dependency injection over facades like me, then you can easily inject the manager like so:, (*21)

use GrahamCampbell\GitHub\GitHubManager;

class Foo
{
    public function __construct(
        private readonly GitHubManager $github,
    ) {
    }

    public function bar()
    {
        $this->github->issues()->show('GrahamCampbell', 'Laravel-GitHub', 2);
    }
}

app(Foo::class)->bar();

For more information on how to use the Github\Client class we are calling behind the scenes here, check out the docs at https://github.com/KnpLabs/php-github-api/tree/v3.16.0/doc, and the manager class at https://github.com/GrahamCampbell/Laravel-Manager#usage., (*22)

Further Information

There are other classes in this package that are not documented here. This is because they are not intended for public use and are used internally by this package., (*23)

Security

If you discover a security vulnerability within this package, please send an email to security@tidelift.com. All security vulnerabilities will be promptly addressed. You may view our full security policy here., (*24)

License

Laravel GitHub is licensed under The MIT License (MIT)., (*25)

For Enterprise

Available as part of the Tidelift Subscription, (*26)

The maintainers of graham-campbell/github and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. Learn more., (*27)

The Versions

02/04 2018

dev-master

9999999-dev

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

02/04 2018

v7.3.0

7.3.0.0

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

24/03 2018

v7.2.0

7.2.0.0

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

19/03 2018

v7.1.0

7.1.0.0

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

01/03 2018

v7.0.0

7.0.0.0

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

02/01 2018

v6.2.1

6.2.1.0

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

02/01 2018

6.2.x-dev

6.2.9999999.9999999-dev

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

28/12 2017

v6.2.0

6.2.0.0

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

07/10 2017

v6.1.0

6.1.0.0

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

06/08 2017
01/01 2017

v5.1.0

5.1.0.0

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

01/01 2017

5.1.x-dev

5.1.9999999.9999999-dev

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

11/12 2016

v5.0.0

5.0.0.0

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

10/06 2016

v4.4.2

4.4.2.0

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

10/06 2016

4.4.x-dev

4.4.9999999.9999999-dev

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

05/06 2016

v4.4.1

4.4.1.0

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

05/06 2016

v4.4.0

4.4.0.0

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

26/04 2016

v4.3.0

4.3.0.0

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

30/01 2016

v4.2.1

4.2.1.0

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

14/11 2015

v4.2.0

4.2.0.0

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

06/10 2015

v4.1.0

4.1.0.0

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

26/06 2015

v4.0.0

4.0.0.0

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

25/05 2015

v3.2.0

3.2.0.0

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

25/05 2015

3.2.x-dev

3.2.9999999.9999999-dev

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

07/05 2015

v3.1.0

3.1.0.0

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

17/02 2015

v3.0.0

3.0.0.0

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

05/02 2015

v2.0.0

2.0.0.0

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

05/02 2015

2.0.x-dev

2.0.9999999.9999999-dev

GitHub Is A GitHub Bridge For Laravel 5

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

11/01 2015

v1.0.1

1.0.1.0

GitHub Is A GitHub Bridge For Laravel 4.1/4.2

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

11/01 2015

1.0.x-dev

1.0.9999999.9999999-dev

GitHub Is A GitHub Bridge For Laravel 4.1/4.2

  Sources   Download

MIT

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

19/10 2014

v1.0.0

1.0.0.0

GitHub Is A GitHub Bridge For Laravel 4.1/4.2

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

12/08 2014

v0.1.1-alpha

0.1.1.0-alpha

GitHub Is A GitHub Bridge For Laravel 4.1+

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github

27/07 2014

v0.1.0-alpha

0.1.0.0-alpha

GitHub Is A GitHub Bridge For Laravel 4.1+

  Sources   Download

Apache-2.0

The Requires

 

The Development Requires

by Graham Campbell

laravel framework graham campbell grahamcampbell github bridge php github api php-github-api github bridge laravel github laravel-github