Skip to content

Commit

Permalink
Release 10.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed May 2, 2021
1 parent 9e57b3e commit 08f7be5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ CHANGE LOG
==========


## V10.2 (03/05/2021)

* Require knplabs/github-api 3.2


## V10.1 (14/03/2021)

* Require knplabs/github-api 3.1
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ Laravel GitHub requires [PHP](https://php.net) 7.2-8.0. This particular version
| 7.8 | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: |
| 8.9 | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: |
| 9.8 | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| 10.1 | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
| 10.2 | :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](https://getcomposer.org). You will need to install any packages that "provide" `psr/http-client-implementation` and `psr/http-factory-implementation`. Most users will want:

```bash
$ composer require "graham-campbell/github:^10.1" "guzzlehttp/guzzle:^7.2" "http-interop/http-factory-guzzle:^1.0"
$ composer require "graham-campbell/github:^10.2" "guzzlehttp/guzzle:^7.2" "http-interop/http-factory-guzzle:^1.0"
```

If you'd like to use the private key authenticator, then you will also need to install `lcobucci/jwt`:
Expand Down Expand Up @@ -172,7 +172,7 @@ class Foo
App::make('Foo')->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.1.0/doc, and the manager class at https://github.com/GrahamCampbell/Laravel-Manager#usage.
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.2.0/doc, and the manager class at https://github.com/GrahamCampbell/Laravel-Manager#usage.

##### Further Information

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"graham-campbell/manager": "^4.5",
"illuminate/contracts": "^6.0 || ^7.0 || ^8.0",
"illuminate/support": "^6.0 || ^7.0 || ^8.0",
"knplabs/github-api": "3.1.*",
"knplabs/github-api": "3.2.*",
"symfony/cache": "^4.3 || ^5.0"
},
"require-dev": {
Expand Down

0 comments on commit 08f7be5

Please sign in to comment.