Skip to content

Commit

Permalink
Bumped versions and support PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Oct 8, 2023
1 parent 53e59b3 commit 6c16615
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:

strategy:
matrix:
php: ['7.4', '8.0', '8.1', '8.2']
php: ['7.4', '8.0', '8.1', '8.2', '8.3']

steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ This version supports [PHP](https://php.net) 7.4-8.2. To get started, simply req

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

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

```bash
$ composer require "zeichen32/gitlabapibundle:^6.0" \
"symfony/http-client:^6.2" "nyholm/psr7:^1.7"
"symfony/http-client:^6.3" "nyholm/psr7:^1.8"
```

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).
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"ext-json": "*",
"ext-xml": "*",
"php-http/cache-plugin": "^1.8",
"php-http/client-common": "^2.6.1",
"php-http/discovery": "^1.17",
"php-http/client-common": "^2.7",
"php-http/discovery": "^1.19",
"php-http/httplug": "^2.4",
"php-http/multipart-stream-builder": "^1.3",
"psr/cache": "^1.0 || ^2.0 || ^3.0",
Expand All @@ -43,8 +43,8 @@
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.8.2",
"guzzlehttp/guzzle": "^7.5.1",
"http-interop/http-factory-guzzle": "^1.0"
"guzzlehttp/guzzle": "^7.8",
"http-interop/http-factory-guzzle": "^1.2"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 6c16615

Please sign in to comment.