Skip to content

Commit

Permalink
chore: drop support for php 5.5 (#5409)
Browse files Browse the repository at this point in the history
  • Loading branch information
bshaffer authored Jul 28, 2022
1 parent 9e93f2a commit dc0e21b
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 8 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@ jobs:
phpunit-filename: [phpunit]
grpc-version: [grpc]
include:
- platform: ubuntu-latest
php: "5.5"
phpunit-filename: phpunit-php5
grpc-version: grpc-1.33.1
- platform: ubuntu-latest
php: "5.6"
phpunit-filename: phpunit-php5
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ You can sign these electronically (just scroll to the bottom). After that, we'll
In order to use Google Cloud PHP, some setup is required!

1. Install PHP.
Google Cloud PHP requires PHP 5.5 or higher. Installation of PHP varies depending on your system. Refer to the [PHP installation and configuration documentation](http://php.net/manual/en/install.php) for detailed instructions.
Google Cloud PHP requires PHP 5.6 or higher. Installation of PHP varies depending on your system. Refer to the [PHP installation and configuration documentation](http://php.net/manual/en/install.php) for detailed instructions.

2. Install [Composer](https://getcomposer.org/download/).

Expand Down
2 changes: 1 addition & 1 deletion Core/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"license": "Apache-2.0",
"minimum-stability": "stable",
"require": {
"php": ">=5.5",
"php": ">=5.6",
"rize/uri-template": "~0.3",
"google/auth": "^1.18",
"guzzlehttp/guzzle": "^5.3|^6.5.7|^7.4.4",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ $spanner = new SpannerClient([

## PHP Versions Supported

All client libraries support PHP 5.5 and above, with the exception of
All client libraries support PHP 5.6 and above, with the exception of
[Google Cloud Compute](Compute), which supports PHP 7.0 and above.

## Versioning
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
}
],
"require": {
"php": ">=5.5",
"php": ">=5.6",
"rize/uri-template": "~0.3",
"guzzlehttp/guzzle": "^5.3|^6.5.7|^7.4.4",
"guzzlehttp/psr7": "^1.7|^2.0",
Expand Down

0 comments on commit dc0e21b

Please sign in to comment.