Skip to content

Commit eadbd86

Browse files
committed
Drop PHP < 7.4
See xp-framework/rfc#343
1 parent a136681 commit eadbd86

4 files changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5', '8.6']
18+
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5', '8.6']
1919
os: [ubuntu-latest, windows-latest]
2020

2121
steps:

ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ HTTP protocol support for the XP Framework ChangeLog
33

44
## ?.?.? / ????-??-??
55

6+
## 11.0.0 / 2026-04-25
7+
8+
* **Heads up:** Dropped support for PHP < 7.4, see xp-framework/rfc#343
9+
(@thekid)
610
* Added PHP 8.5 and 8.6 to the test matrix - @thekid
711

812
## 10.3.0 / 2024-03-24

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ HTTP protocol support for the XP Framework
66
[![BSD Licence](https://raw.githubusercontent.com/xp-framework/web/master/static/licence-bsd.png)](https://github.com/xp-framework/core/blob/master/LICENCE.md)
77
[![Requires PHP 7.0+](https://raw.githubusercontent.com/xp-framework/web/master/static/php-7_0plus.svg)](http://php.net/)
88
[![Supports PHP 8.0+](https://raw.githubusercontent.com/xp-framework/web/master/static/php-8_0plus.svg)](http://php.net/)
9-
[![Latest Stable Version](https://poser.pugx.org/xp-framework/http/version.png)](https://packagist.org/packages/xp-framework/http)
9+
[![Latest Stable Version](https://poser.pugx.org/xp-framework/http/version.svg)](https://packagist.org/packages/xp-framework/http)
1010

1111
Implements HTTP (HyperText Transfer Protocol) and provides a client to interact with HTTP servers. The `HttpConnection` is the entry point class.
1212

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
"description" : "HTTP protocol support for the XP Framework",
77
"keywords": ["module", "xp"],
88
"require" : {
9-
"xp-framework/core": "^12.0 | ^11.0 | ^10.0 | ^9.0 | ^8.0 | ^7.0 | ^6.5",
10-
"xp-framework/logging": "^11.0 | ^10.0 | ^9.0 | ^8.0 | ^7.0 | ^6.5",
11-
"xp-framework/networking": "^10.0 | ^9.0 | ^8.0 | ^7.0 | ^6.6",
12-
"php": ">=7.0.0"
9+
"xp-framework/core": "^12.0 | ^11.0 | ^10.0",
10+
"xp-framework/logging": "^11.0 | ^10.0",
11+
"xp-framework/networking": "^11.0 | ^10.0 | ^9.3",
12+
"php" : ">=7.4.0"
1313
},
1414
"suggest": {
1515
"ext-openssl": "Allows to use SSL/TLS, e.g. for https-connections",

0 commit comments

Comments
 (0)