Skip to content

Commit 6c16615

Browse files
Bumped versions and support PHP 8.3
1 parent 53e59b3 commit 6c16615

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/static.yml

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

1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515

1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2
@@ -45,7 +45,7 @@ jobs:
4545

4646
steps:
4747
- name: Checkout code
48-
uses: actions/checkout@v3
48+
uses: actions/checkout@v4
4949

5050
- name: Setup PHP
5151
uses: shivammathur/setup-php@v2

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
php: ['7.4', '8.0', '8.1', '8.2']
14+
php: ['7.4', '8.0', '8.1', '8.2', '8.3']
1515

1616
steps:
1717
- name: Checkout Code
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
- name: Setup PHP
2121
uses: shivammathur/setup-php@v2

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This version supports [PHP](https://php.net) 7.4-8.2. To get started, simply req
2929

3030
```bash
3131
$ composer require "m4tthumphrey/php-gitlab-api:^11.12" \
32-
"guzzlehttp/guzzle:^7.5.1" "http-interop/http-factory-guzzle:^1.2"
32+
"guzzlehttp/guzzle:^7.8" "http-interop/http-factory-guzzle:^1.2"
3333
```
3434

3535
### Framework Integration
@@ -44,7 +44,7 @@ $ composer require "graham-campbell/gitlab:^7.4"
4444

4545
```bash
4646
$ composer require "zeichen32/gitlabapibundle:^6.0" \
47-
"symfony/http-client:^6.2" "nyholm/psr7:^1.7"
47+
"symfony/http-client:^6.3" "nyholm/psr7:^1.8"
4848
```
4949

5050
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/gitlab](https://github.com/GrahamCampbell/Laravel-GitLab) is by [Graham Campbell](https://github.com/GrahamCampbell) and [zeichen32/gitlabapibundle](https://github.com/Zeichen32/GitLabApiBundle) is by [Jens Averkamp](https://github.com/Zeichen32).

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
"ext-json": "*",
3131
"ext-xml": "*",
3232
"php-http/cache-plugin": "^1.8",
33-
"php-http/client-common": "^2.6.1",
34-
"php-http/discovery": "^1.17",
33+
"php-http/client-common": "^2.7",
34+
"php-http/discovery": "^1.19",
3535
"php-http/httplug": "^2.4",
3636
"php-http/multipart-stream-builder": "^1.3",
3737
"psr/cache": "^1.0 || ^2.0 || ^3.0",
@@ -43,8 +43,8 @@
4343
},
4444
"require-dev": {
4545
"bamarni/composer-bin-plugin": "^1.8.2",
46-
"guzzlehttp/guzzle": "^7.5.1",
47-
"http-interop/http-factory-guzzle": "^1.0"
46+
"guzzlehttp/guzzle": "^7.8",
47+
"http-interop/http-factory-guzzle": "^1.2"
4848
},
4949
"autoload": {
5050
"psr-4": {

0 commit comments

Comments
 (0)