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
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
php-versions: ['8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

required

Why are we checked our service within few versions of PHP?

redis-versions: ['5', '6', '7']

steps:
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
### Changes
- Add PHP 8.5 support
- Drop PHP 7.1-7.4 support and declare PHP 8.0+ as the minimum supported version

## [3.23.0] - 2025-06-10
### Changes
Expand Down Expand Up @@ -332,7 +335,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Added
- Initial stable release

[Unreleased]: https://github.com/pdffiller/qless-php/compare/v3.21.0...HEAD
[4.0.0]: https://github.com/pdffiller/qless-php/compare/v3.24.0...v4.0.0
[3.24.0]: https://github.com/pdffiller/qless-php/compare/v3.23.0...v3.24.0
[3.23.0]: https://github.com/pdffiller/qless-php/compare/v3.22.0...v3.23.0
Comment thread
YaroslavStryhun marked this conversation as resolved.
[3.21.0]: https://github.com/pdffiller/qless-php/compare/v3.20.0...v3.21.0
[3.20.0]: https://github.com/pdffiller/qless-php/compare/v3.19.0...v3.20.0
[3.19.0]: https://github.com/pdffiller/qless-php/compare/v3.18.2...v3.19.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# qless-php

[![PHP Version](https://img.shields.io/badge/supported->%3D7.1%20<=8.4-blue?logo=php)](https://php.net/)
[![PHP Version](https://img.shields.io/badge/supported->%3D8.0%20<=8.5-blue?logo=php)](https://php.net/)
[![Workflow Status](https://github.com/pdffiller/qless-php/actions/workflows/pr.yml/badge.svg)](https://github.com/pdffiller/qless-php/actions/workflows/pr.yml)

PHP Bindings for qless.
Expand Down Expand Up @@ -104,7 +104,7 @@ Prerequisite PHP extensions are:
- [`pcre`](http://php.net/manual/en/book.pcre.php)
- [`sockets`](http://php.net/manual/en/book.sockets.php)

Supported PHP versions are: **7.1**, **7.2**, **7.3**, **8.0** and **8.1**.
Supported PHP versions are: **8.0**, **8.1**, **8.2**, **8.3**, **8.4** and **8.5**.

Qless PHP can be installed via Composer:

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
}
],
"require": {
"php": "^7.1 || ^8.0",
"php": "^8.0",
"ext-json": "*",
"ext-pcntl": "*",
"ext-pcre": "*",
Expand Down
Loading