Skip to content

Commit 6497159

Browse files
Bumped versions
1 parent e82e820 commit 6497159

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This version supports [PHP](https://php.net) 7.4-8.2. To get started, simply req
2222
### Standard Installation
2323

2424
```bash
25-
$ composer require "toin0u/digitalocean-v2:^4.7" \
25+
$ composer require "toin0u/digitalocean-v2:^4.8" \
2626
"guzzlehttp/guzzle:^7.5.1" "http-interop/http-factory-guzzle:^1.2"
2727
```
2828

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
"require": {
2424
"php": "^7.4.15 || ^8.0.2",
2525
"ext-json": "*",
26-
"php-http/client-common": "^2.6.1",
27-
"php-http/discovery": "^1.17",
26+
"php-http/client-common": "^2.7",
27+
"php-http/discovery": "^1.19",
2828
"php-http/httplug": "^2.4",
2929
"psr/http-client-implementation": "^1.0",
3030
"psr/http-factory-implementation": "^1.0",
@@ -33,7 +33,7 @@
3333
},
3434
"require-dev": {
3535
"bamarni/composer-bin-plugin": "^1.8.2",
36-
"guzzlehttp/guzzle": "^7.5.1",
36+
"guzzlehttp/guzzle": "^7.8",
3737
"http-interop/http-factory-guzzle": "^1.2"
3838
},
3939
"autoload": {

src/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class Client
6969
*
7070
* @var string
7171
*/
72-
private const USER_AGENT = 'digitalocean-php-api-client/4.7';
72+
private const USER_AGENT = 'digitalocean-php-api-client/4.8';
7373

7474
/**
7575
* @var Builder

0 commit comments

Comments
 (0)