From d211657e2024fbb5c00924dd4d8b6944bbf2ad79 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Sat, 13 May 2023 14:18:17 +0200 Subject: [PATCH 1/4] Update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 727bbab0..ff211707 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ A library that gives you access to the powerful Parse Server backend from your P ## Table of Contents +- [Compatibility](#compatibility) - [Installation](#installation) - [Install with Composer](#install-with-composer) - [Install with Git](#install-with-git) @@ -64,6 +65,15 @@ A library that gives you access to the powerful Parse Server backend from your P - [Logs](#logs) - [Contributing / Testing](#contributing--testing) +## Compatibility + +The Parse PHP SDK is continuously tested with the most recent releases of PHP to ensure compatibility. We follow the [PHP Long Term Support plan](https://www.php.net/supported-versions.php) and only test against versions that are officially supported and have not reached their end-of-life date. + +| Version | End-of-Life | Compatible | +|---------|-------------|------------| +| PHP 8.2 | Dec 2024 | ✅ Yes | +| PHP 8.1 | Nov 2023 | ✅ Yes | + ## Installation There are various ways to install and use this sdk. We'll elaborate on a couple here. Note that the Parse PHP SDK requires PHP 5.4 or newer. It can also run on HHVM (recommended 3.0 or newer). From 4b63934645ea1b2d420b61ac03095dbab44e8e81 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Sat, 13 May 2023 14:20:08 +0200 Subject: [PATCH 2/4] Update ci.yml --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 233e5200..1ac39c75 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,10 +26,12 @@ jobs: strategy: matrix: include: - - name: PHP 8.1 - PHP_VERSION: 8.1 + - name: PHP 8.3 + PHP_VERSION: 8.3 - name: PHP 8.2 PHP_VERSION: 8.2 + - name: PHP 8.1 + PHP_VERSION: 8.1 fail-fast: false steps: - uses: actions/checkout@v3 From 2bf0a0308c9c7aa651f32c06fea38af9207a6b27 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Sat, 13 May 2023 14:21:32 +0200 Subject: [PATCH 3/4] Update ci.yml --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ac39c75..25ae180c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,8 +26,6 @@ jobs: strategy: matrix: include: - - name: PHP 8.3 - PHP_VERSION: 8.3 - name: PHP 8.2 PHP_VERSION: 8.2 - name: PHP 8.1 From 0ac1e58d3888ba346d7dd5a77a24fc066e6af3f1 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Sat, 13 May 2023 14:22:48 +0200 Subject: [PATCH 4/4] Update ci.yml --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 25ae180c..dcf7af82 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,6 +31,7 @@ jobs: - name: PHP 8.1 PHP_VERSION: 8.1 fail-fast: false + name: Test ${{ matrix.name }} steps: - uses: actions/checkout@v3 - name: Use Node.js