Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SNOW-920192: drop support for PHP 7.3/7.4 #346

Merged
1 commit merged into from
Oct 27, 2023
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
6 changes: 3 additions & 3 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
# have to specify minor version on windows
# otherwise could get version mismatch issue when running test on github
# need to keep track on the latest version
php-version: ['8.0.30', '8.1.23', '8.2.10']
php-version: ['8.0.30', '8.1.25', '8.2.12']
# The type of runner that the job will run on
runs-on: windows-2019
env:
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
build_test_linux:
strategy:
matrix:
php-version: ['7.4', '8.0', '8.1', '8.2']
php-version: ['8.0', '8.1', '8.2']
# The type of runner that the job will run on
runs-on: ubuntu-latest
env:
Expand All @@ -87,7 +87,7 @@ jobs:
build_test_mac:
strategy:
matrix:
php-version: ['7.4', '8.0', '8.1', '8.2']
php-version: ['8.0', '8.1', '8.2']
# The type of runner that the job will run on
runs-on: macos-latest
env:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ To build the Snowflake PHP PDO Driver, the following software must be installed:

To install and use the Snowflake PHP PDO Driver, you must have the following software installed:

- PHP 8.1, 8.0, 7.4 or 7.3 (Note: support for PHP 7.2 is deprecated)
- PHP 8.2, 8.1 or 8.0 (Note: support for PHP 7.4 or lower is deprecated)
- the :code:`php-pdo` extension
- the :code:`php-json` extension

Expand Down
Loading