Skip to content

Commit 5ee004b

Browse files
committed
Drop support for PHP < 8.0
1 parent 206d8fd commit 5ee004b

4 files changed

Lines changed: 11 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: ['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: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ Data sequences change log
33

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

6+
## 11.0.0 / ????-??-??
7+
8+
* Dropped support for PHP 7.x - see xp-framework/rfc#343. Mininum required
9+
PHP version is now 8.0.0!
10+
(@thekid)
11+
612
## 10.5.0 / 2026-07-26
713

814
* Added PHP 8.6 to the test matrix - @thekid

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ Data sequences
44
[![Build status on GitHub](https://github.com/xp-forge/sequence/workflows/Tests/badge.svg)](https://github.com/xp-forge/sequence/actions)
55
[![XP Framework Module](https://raw.githubusercontent.com/xp-framework/web/master/static/xp-framework-badge.png)](https://github.com/xp-framework/core)
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)
7-
[![Requires PHP 7.0+](https://raw.githubusercontent.com/xp-framework/web/master/static/php-7_0plus.svg)](http://php.net/)
8-
[![Supports PHP 8.0+](https://raw.githubusercontent.com/xp-framework/web/master/static/php-8_0plus.svg)](http://php.net/)
7+
[![Requires PHP 8.0+](https://raw.githubusercontent.com/xp-framework/web/master/static/php-8_0plus.svg)](http://php.net/)
98
[![Latest Stable Version](https://poser.pugx.org/xp-forge/sequence/version.svg)](https://packagist.org/packages/xp-forge/sequence)
109

1110
This API allows working with data sequences of different kinds in a functional style, e.g. map/reduce.

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
"description" : "Data sequences",
77
"keywords": ["module", "xp"],
88
"require" : {
9-
"xp-framework/core": "^12.0 | ^11.0 | ^10.2",
10-
"xp-framework/collections": "^10.0 | ^9.0 | ^8.0",
11-
"php" : ">=7.0.0"
9+
"xp-framework/core": "^12.0 | ^11.0",
10+
"xp-framework/collections": "^10.0",
11+
"php" : ">=8.0.0"
1212
},
1313
"require-dev" : {
1414
"xp-framework/test": "^2.0 | ^1.2"

0 commit comments

Comments
 (0)