Skip to content

Commit 8a5be38

Browse files
committed
Drop PHP < 7.4 - see xp-framework/rfc#343
1 parent ec99f75 commit 8a5be38

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.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']
18+
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
1919
os: [ubuntu-latest, windows-latest]
2020

2121
steps:

ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ MongoDB for XP Framework ChangeLog
55

66
## 3.0.0 / ????-??-??
77

8+
* **Heads up:** Dropped support for PHP < 7.4, see xp-framework/rfc#343
9+
(@thekid)
810
* Merged PR #51: Defer connecting the MongoDB cluster until actual I/O is
911
performed. Implements the *lazy by default* option suggested in #50.
1012
(@thekid)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ MongoDB connectivity
44
[![Build status on GitHub](https://github.com/xp-forge/mongodb/workflows/Tests/badge.svg)](https://github.com/xp-forge/mongodb/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/)
7+
[![Requires PHP 7.4+](https://raw.githubusercontent.com/xp-framework/web/master/static/php-7_4plus.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/)
99
[![Latest Stable Version](https://poser.pugx.org/xp-forge/mongodb/version.svg)](https://packagist.org/packages/xp-forge/mongodb)
1010

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
"description" : "MongoDB connectivity for XP Framework",
77
"keywords": ["module", "xp"],
88
"require" : {
9-
"xp-framework/core": "^12.0 | ^11.0 | ^10.0 | ^9.0 | ^8.0 | ^7.0",
10-
"xp-framework/networking": "^10.0 | ^9.0 | ^8.0",
9+
"xp-framework/core": "^12.0 | ^11.0 | ^10.0",
10+
"xp-framework/networking": "^10.0",
1111
"xp-framework/math": "^9.1",
12-
"php" : ">=7.0.0"
12+
"php" : ">=7.4.0"
1313
},
1414
"require-dev" : {
1515
"xp-framework/test": "^2.0 | ^1.5"

0 commit comments

Comments
 (0)