Skip to content

Commit af19fe7

Browse files
committed
Drop PHP < 7.4 support
This will allow us to use flexible heredocs in test, as well as typed properties and other goodies. https://www.php.net/releases/7_3_0.php https://www.php.net/releases/7_4_0.php
1 parent 0ab1c73 commit af19fe7

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/coding-standards.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
php:
19-
- "7.2"
19+
- "7.4"
2020

2121
steps:
2222
- name: "Checkout"

.github/workflows/continuous-integration.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ jobs:
1919
strategy:
2020
matrix:
2121
php:
22-
- "7.2"
23-
- "7.3"
2422
- "7.4"
2523
- "8.0"
2624
- "8.1"
@@ -65,7 +63,7 @@ jobs:
6563
strategy:
6664
matrix:
6765
php:
68-
- "7.4"
66+
- "8.0"
6967

7068
steps:
7169
- name: "Checkout"
@@ -116,7 +114,7 @@ jobs:
116114
strategy:
117115
matrix:
118116
php:
119-
- "7.2"
117+
- "7.4"
120118

121119
steps:
122120
- name: "Checkout"

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"role": "Developer (original JS version)"
2525
}],
2626
"require": {
27-
"php": ">=7.2.0",
27+
"php": ">=7.4.0",
2828
"ext-mbstring": "*",
2929
"psr/log": "^1.0.1 || ^2.0 || ^3.0",
3030
"masterminds/html5": "^2.7"

0 commit comments

Comments
 (0)