Skip to content

Commit 130fa7c

Browse files
authored
Merge pull request #21 from ingenerator/support-php83
Support PHP 8.3
2 parents 0d04ff5 + 1a22571 commit 130fa7c

4 files changed

Lines changed: 11 additions & 2 deletions

File tree

.gitattributes

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,6 @@ README text eol=lf
2929
*.sqlite binary
3030

3131
# Ignore paths that should not be included in an archive (eg for a distribution version)
32-
/test
32+
/.github export-ignore
33+
/test export-ignore
34+
/phpunit.xml export-ignore

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,16 @@ jobs:
1616
php_version:
1717
- '8.1'
1818
- '8.2'
19+
- '8.3'
1920
dependencies:
2021
- 'default'
2122
include:
2223
- php_version: '8.1'
2324
dependencies: 'lowest'
2425
- php_version: '8.2'
2526
dependencies: 'lowest'
27+
- php_version: '8.3'
28+
dependencies: 'lowest'
2629
env:
2730
php_extensions: grpc, protobuf
2831
steps:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Unreleased
22

3+
## v0.5.7 (2024-10-01)
4+
5+
* Support PHP 8.3
6+
37
## v0.5.6 (2024-02-28)
48

59
* Require google/gax:^1.29.1 for the new InsecureCredentialsWrapper class for emulator connections.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
}
1212
],
1313
"require": {
14-
"php": "~8.1.0 || ~8.2.0",
14+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
1515
"ext-bcmath": "*",
1616
"google/cloud-tasks": "^1.8",
1717
"google/gax": "^1.29.1",

0 commit comments

Comments
 (0)