Skip to content

Commit f9ff134

Browse files
committed
Drop PHP 7.0 - 7.3
See xp-framework/rfc#343 (comment)
1 parent 8c8c342 commit f9ff134

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

.github/workflows/ci.yml

+1-1
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

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ XP Framework Core ChangeLog
33

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

6+
## 12.0.0 / ????-??-??
7+
8+
### RFCs
9+
10+
* Implemented xp-framework/rfc#343, part 1: Drop support for all but the
11+
latest PHP 7 release. The minimum required PHP version is now **7.4**!
12+
(@thekid)
13+
614
## 11.9.0 / 2024-03-16
715

816
### Features

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ XP Framework Core
33
[![Build status on GitHub](https://github.com/xp-framework/core/workflows/Tests/badge.svg)](https://github.com/xp-framework/core/actions)
44
[![Build status on AppVeyor](https://ci.appveyor.com/api/projects/status/bb9gkkq1o7f6m2ns?svg=true)](https://ci.appveyor.com/project/thekid/core)
55
[![BSD License](https://raw.githubusercontent.com/xp-framework/web/master/static/licence-bsd.png)](https://github.com/xp-framework/core/blob/master/LICENSE.md)
6-
[![Requires PHP 7.0+](https://raw.githubusercontent.com/xp-framework/web/master/static/php-7_0plus.svg)](http://php.net/)
6+
[![Requires PHP 7.4+](https://raw.githubusercontent.com/xp-framework/web/master/static/php-7_4plus.svg)](http://php.net/)
77
[![Supports PHP 8.0+](https://raw.githubusercontent.com/xp-framework/web/master/static/php-8_0plus.svg)](http://php.net/)
88
[![Latest Stable Version](https://poser.pugx.org/xp-framework/core/version.png)](https://packagist.org/packages/xp-framework/core)
99

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
"description" : "The XP framework is an all-purpose, object oriented PHP framework.",
77
"keywords": ["framework", "xp"],
88
"require" : {
9-
"php" : ">=7.0.0"
9+
"php" : ">=7.4.0"
1010
},
1111
"suggest" : {
12-
"php" : ">=8.0.0"
12+
"php" : ">=8.2.0"
1313
},
1414
"autoload" : {
1515
"files" : ["src/main/php/__xp.php", "src/main/resources/autoload.php"]

0 commit comments

Comments
 (0)