Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/sync-repo-settings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@ branchProtectionRules:
- pattern: main
isAdminEnforced: true
requiredStatusCheckContexts:
- 'PHP 8.0 Unit Test'
- 'PHP 8.0 Unit Test protobuf,grpc'
- 'PHP 8.0 Unit Test --prefer-lowest'
- 'PHP 8.1 Unit Test'
- 'PHP 8.1 Unit Test protobuf,grpc'
- 'PHP 8.1 Unit Test --prefer-lowest'
- 'PHP 8.2 Unit Test'
- 'PHP 8.3 Unit Test'
- 'PHP 8.4 Unit Test'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ "8.0", "8.1", "8.2", "8.3", "8.4" ]
php: [ "8.1", "8.2", "8.3", "8.4" ]
extensions: [""]
tools: [""]
composerflags: [""]
include:
- php: "8.0"
- php: "8.1"
extensions: "protobuf,grpc"
tools: "pecl"
- php: "8.4"
extensions: "protobuf,grpc"
tools: "pecl"
- php: "8.0"
- php: "8.1"
composerflags: "--prefer-lowest"
name: "PHP ${{ matrix.php }} Unit Test ${{ matrix.extensions }}${{ matrix.composerflags }}"
steps:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ more convenient and idiomatic API surface to callers.

## PHP Versions

gax-php currently requires PHP 8.0 or higher.
gax-php currently requires PHP 8.1 or higher.

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"homepage": "https://github.com/googleapis/gax-php",
"license": "BSD-3-Clause",
"require": {
"php": "^8.0",
"php": "^8.1",
"google/auth": "^1.45",
"google/grpc-gcp": "^0.4",
"grpc/grpc": "^1.13",
Expand Down