Skip to content

Commit ee17eeb

Browse files
Bump versions
1 parent 7a30ed8 commit ee17eeb

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This version supports [PHP](https://php.net) 7.4-8.3. To get started, simply req
2828
### Standard Installation
2929

3030
```bash
31-
$ composer require "bitbucket/client:^4.6" \
31+
$ composer require "bitbucket/client:^4.7" \
3232
"guzzlehttp/guzzle:^7.8" "http-interop/http-factory-guzzle:^1.2"
3333
```
3434

@@ -37,15 +37,15 @@ $ composer require "bitbucket/client:^4.6" \
3737
#### Laravel:
3838

3939
```bash
40-
$ composer require "graham-campbell/bitbucket:^10.3"
40+
$ composer require "graham-campbell/bitbucket:^10.4"
4141
```
4242

4343
We are decoupled from any HTTP messaging client by using [PSR-7](https://www.php-fig.org/psr/psr-7/), [PSR-17](https://www.php-fig.org/psr/psr-17/), [PSR-18](https://www.php-fig.org/psr/psr-18/), and [HTTPlug](https://httplug.io/). You can visit [HTTPlug for library users](https://docs.php-http.org/en/latest/httplug/users.html) to get more information about installing HTTPlug related packages. The framework integration [`graham-campbell/bitbucket`](https://github.com/GrahamCampbell/Laravel-Bitbucket) is by [Graham Campbell](https://github.com/GrahamCampbell).
4444

4545

4646
## Usage
4747

48-
The main point of entry is the `Bitbucket\Client` class. Simply create a new instance of that, authenticate, and you're good to go! As of time of writing (Tuesday 29th June 2020), every endpoint (excluding issue export and import, and various deprecated endpoints) available on the Bitbucket API 2.0 is also available through this PHP client. We'd recommend looking through the [Bitbucket documentation](https://developer.atlassian.com/cloud/bitbucket/rest/intro/), and also the [source code](https://github.com/BitbucketPHP/Client/tree/4.6/src) to get a full picture of what is available to use.
48+
The main point of entry is the `Bitbucket\Client` class. Simply create a new instance of that, authenticate, and you're good to go! As of time of writing (Tuesday 29th June 2020), every endpoint (excluding issue export and import, and various deprecated endpoints) available on the Bitbucket API 2.0 is also available through this PHP client. We'd recommend looking through the [Bitbucket documentation](https://developer.atlassian.com/cloud/bitbucket/rest/intro/), and also the [source code](https://github.com/BitbucketPHP/Client/tree/4.7/src) to get a full picture of what is available to use.
4949

5050
### Authentication
5151

psalm-baseline.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<files psalm-version="5.16.0@2897ba636551a8cb61601cc26f6ccfbba6c36591">
2+
<files psalm-version="5.23.1@8471a896ccea3526b26d082f4461eeea467f10a4">
33
<file src="src/ResultPager.php">
44
<InaccessibleProperty>
55
<code><![CDATA[$clone->perPage]]></code>

psalm.xml

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
xmlns="https://getpsalm.org/schema/config"
77
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
88
errorBaseline="psalm-baseline.xml"
9+
findUnusedBaselineEntry="true"
10+
findUnusedCode="false"
911
>
1012
<projectFiles>
1113
<directory name="src" />

src/Client.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ class Client
7676
*
7777
* @var string
7878
*/
79-
private const USER_AGENT = 'bitbucket-php-api-client/4.6';
79+
private const USER_AGENT = 'bitbucket-php-api-client/4.7';
8080

8181
/**
8282
* The HTTP client builder.

vendor-bin/phpstan/composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"require": {
33
"php": "^8.1",
4-
"phpstan/phpstan": "1.10.47",
4+
"phpstan/phpstan": "1.10.62",
55
"phpstan/phpstan-deprecation-rules": "1.1.4",
66
"phpstan/phpstan-strict-rules": "1.5.2",
77
"thecodingmachine/phpstan-strict-rules": "1.0.0",
8-
"ergebnis/phpstan-rules": "2.1.0"
8+
"ergebnis/phpstan-rules": "2.2.0"
99
},
1010
"config": {
1111
"preferred-install": "dist"

vendor-bin/phpunit/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"require": {
33
"php": "^7.4.15 || ^8.0.2",
4-
"phpunit/phpunit": "^9.6.15 || ^10.5.1"
4+
"phpunit/phpunit": "^9.6.17 || ^10.5.13"
55
},
66
"config": {
77
"preferred-install": "dist"

vendor-bin/psalm/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"require": {
33
"php": "^8.1",
4-
"psalm/phar": "5.16.0"
4+
"psalm/phar": "5.23.1"
55
},
66
"config": {
77
"preferred-install": "dist"

0 commit comments

Comments
 (0)