Skip to content

Commit eb8b40b

Browse files
Drop support for PHP 7.1-7.4 and add support for PHP 8.5 (#165)
1 parent 4e59b8e commit eb8b40b

4 files changed

Lines changed: 10 additions & 5 deletions

File tree

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
25+
php-versions: ['8.0', '8.1', '8.2', '8.3', '8.4', '8.5']
2626
redis-versions: ['5', '6', '7']
2727

2828
steps:

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

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

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

335-
[Unreleased]: https://github.com/pdffiller/qless-php/compare/v3.21.0...HEAD
338+
[4.0.0]: https://github.com/pdffiller/qless-php/compare/v3.24.0...v4.0.0
339+
[3.24.0]: https://github.com/pdffiller/qless-php/compare/v3.23.0...v3.24.0
340+
[3.23.0]: https://github.com/pdffiller/qless-php/compare/v3.22.0...v3.23.0
336341
[3.21.0]: https://github.com/pdffiller/qless-php/compare/v3.20.0...v3.21.0
337342
[3.20.0]: https://github.com/pdffiller/qless-php/compare/v3.19.0...v3.20.0
338343
[3.19.0]: https://github.com/pdffiller/qless-php/compare/v3.18.2...v3.19.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# qless-php
22

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

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

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

109109
Qless PHP can be installed via Composer:
110110

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
}
2525
],
2626
"require": {
27-
"php": "^7.1 || ^8.0",
27+
"php": "^8.0",
2828
"ext-json": "*",
2929
"ext-pcntl": "*",
3030
"ext-pcre": "*",

0 commit comments

Comments
 (0)