Skip to content

Commit fa317b5

Browse files
Merge branch '10.3' into 11.0
2 parents aaae708 + dc03386 commit fa317b5

File tree

10 files changed

+14
-13
lines changed

10 files changed

+14
-13
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
php: ['7.2', '7.3', '7.4']
15-
14+
php: ['7.2', '7.3', '7.4', '8.0']
1615
steps:
1716
- name: Checkout Code
1817
uses: actions/checkout@v2

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414

1515
## [10.3.0] - UPCOMING
1616

17+
* Support PHP 8.0
18+
1719
[10.3.0]: https://github.com/GitLabPHP/Client/compare/10.2.0...10.3.0
1820

1921
## [10.2.0] - 2020-11-09

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ install:
33
@docker run -it -w /data -v ${PWD}:/data:delegated -v ~/.composer:/root/.composer:delegated --entrypoint composer --rm registry.gitlab.com/grahamcampbell/php:7.4-base bin all update
44

55
phpunit:
6-
@rm -f bootstrap/cache/*.php && docker run -it -w /data -v ${PWD}:/data:delegated --entrypoint vendor/bin/phpunit --rm registry.gitlab.com/grahamcampbell/php:7.4-cli
6+
@docker run -it -w /data -v ${PWD}:/data:delegated --entrypoint vendor/bin/phpunit --rm registry.gitlab.com/grahamcampbell/php:7.4-cli
77

88
phpstan-analyze:
99
@docker run -it -w /data -v ${PWD}:/data:delegated --entrypoint vendor/bin/phpstan --rm registry.gitlab.com/grahamcampbell/php:7.4-cli analyze

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Check out the [change log](CHANGELOG.md), [releases](https://github.com/GitLabPH
2323

2424
## Installation
2525

26-
This version supports [PHP](https://php.net) 7.2-7.4. To get started, simply require the project using [Composer](https://getcomposer.org). You will also need to install packages that "provide" [`psr/http-client-implementation`](https://packagist.org/providers/psr/http-client-implementation) and [`psr/http-factory-implementation`](https://packagist.org/providers/psr/http-factory-implementation).
26+
This version supports [PHP](https://php.net) 7.2-8.0. To get started, simply require the project using [Composer](https://getcomposer.org). You will also need to install packages that "provide" [`psr/http-client-implementation`](https://packagist.org/providers/psr/http-client-implementation) and [`psr/http-factory-implementation`](https://packagist.org/providers/psr/http-factory-implementation).
2727

2828
### Standard Installation
2929

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
}
2323
],
2424
"require": {
25-
"php": "^7.2.5",
25+
"php": "^7.2.5 || ^8.0",
2626
"ext-json": "*",
2727
"ext-xml": "*",
28-
"php-http/cache-plugin": "^1.7",
28+
"php-http/cache-plugin": "^1.7.1",
2929
"php-http/client-common": "^2.3",
3030
"php-http/discovery": "^1.12",
31-
"php-http/httplug": "^2.1",
32-
"php-http/multipart-stream-builder": "^1.1",
31+
"php-http/httplug": "^2.2",
32+
"php-http/multipart-stream-builder": "^1.1.2",
3333
"psr/cache": "^1.0",
3434
"psr/http-client-implementation": "^1.0",
3535
"psr/http-factory-implementation": "^1.0",

psalm-baseline.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<files psalm-version="4.1.1@16bfbd9224698bd738c665f33039fade2a1a3977">
2+
<files psalm-version="4.2.1@ea9cb72143b77e7520c52fa37290bd8d8bc88fd9">
33
<file src="src/Api/AbstractApi.php">
44
<InvalidArgument occurrences="1"/>
55
</file>

vendor-bin/phpstan/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"require": {
33
"php": "^7.2.5 || ^8.0",
4-
"phpstan/phpstan": "~0.12.54",
4+
"phpstan/phpstan": "~0.12.57",
55
"phpstan/phpstan-deprecation-rules": "~0.12.5",
66
"phpstan/phpstan-strict-rules": "~0.12.5",
77
"thecodingmachine/phpstan-strict-rules": "~0.12.1",

vendor-bin/phpunit/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"require": {
33
"php": "^7.2.5 || ^8.0",
4-
"phpunit/phpunit": "^8.5.8 || ^9.4.2"
4+
"phpunit/phpunit": "^8.5.11 || ^9.4.3"
55
},
66
"config": {
77
"preferred-install": "dist"

vendor-bin/psalm/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"require": {
33
"php": "^7.2.5 || ^8.0",
4-
"psalm/phar": "~4.1.1"
4+
"psalm/phar": "~4.2.1"
55
},
66
"config": {
77
"preferred-install": "dist"

vendor-bin/rector/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"require": {
33
"php": "^7.2.5",
4-
"rector/rector-prefixed": "0.8.48"
4+
"rector/rector-prefixed": "0.8.52"
55
},
66
"config": {
77
"preferred-install": "dist"

0 commit comments

Comments
 (0)