Skip to content

Commit b6645a4

Browse files
committed
Drop support for PHP < 7.4
1 parent 2e32e52 commit b6645a4

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
if: "!contains(github.event.head_commit.message, 'skip ci')"
1212
name: PHP ${{ matrix.php-versions }} on ${{ matrix.os }}
1313
runs-on: ${{ matrix.os }}
14-
continue-on-error: ${{ matrix.php-versions == '8.3' }}
14+
continue-on-error: ${{ matrix.php-versions >= '8.4' }}
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']
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
@@ -3,6 +3,8 @@ CAS Server change log
33

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

6+
* **Heads up:** Dropped support for PHP < 7.4 - @thekid
7+
* Upgraded dependencies to newest releases - @thekid
68
* Merged PR #19: Migrate to new testing library - @thekid
79
* Simplified configuration files - @thekid
810

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CAS Server
44
[![Build status on GitHub](https://github.com/thekid/cas/workflows/Tests/badge.svg)](https://github.com/thekid/cas/actions)
55
[![Uses XP Framework](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
![Less than 1000 lines](https://raw.githubusercontent.com/xp-framework/web/master/static/less-than-1000LOC.png)
1010

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"xp-lang/php-compact-methods": "^2.0",
2121
"xp-lang/xp-records": "^3.1",
2222
"xp-lang/xp-static": "^2.0",
23-
"php" : ">=7.0.0"
23+
"php" : ">=7.4.0"
2424
},
2525
"require-dev": {
2626
"xp-framework/test": "^2.1"

0 commit comments

Comments
 (0)