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: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@ jobs:
strategy:
matrix:
include:
- name: PHP 8.1
PHP_VERSION: 8.1
- name: PHP 8.2
PHP_VERSION: 8.2
- name: PHP 8.1
PHP_VERSION: 8.1
fail-fast: false
name: Test ${{ matrix.name }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ A library that gives you access to the powerful Parse Server backend from your P

## Table of Contents <!-- omit in toc -->

- [Compatibility](#compatibility)
- [Installation](#installation)
- [Install with Composer](#install-with-composer)
- [Install with Git](#install-with-git)
Expand Down Expand Up @@ -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).
Expand Down