Skip to content

Commit 9300e54

Browse files
committed
[TASK] Drop support for PHP 7.2
1 parent 4e9a54c commit 9300e54

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-22.04
1515
strategy:
1616
matrix:
17-
php-version: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
17+
php-version: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
1818

1919
steps:
2020
- name: Checkout
@@ -39,7 +39,7 @@ jobs:
3939
strategy:
4040
fail-fast: false
4141
matrix:
42-
php-version: [ '5.6', '7.0', '7.1', '7.2', '7.3' ]
42+
php-version: [ '7.2', '7.3' ]
4343
coverage: [ 'none' ]
4444
include:
4545
- php-version: '7.4'

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1313

1414
### Removed
1515

16+
- Drop support for PHP < 7.2 (#420)
17+
1618
### Fixed
1719

1820
## 8.5.0
@@ -31,6 +33,12 @@ This project adheres to [Semantic Versioning](https://semver.org/).
3133
- Handle scientific notation when parsing sizes (#179)
3234
- Fix PHP 8.1 compatibility in `ParserState::strsplit()` (#344)
3335

36+
## 9.0.0
37+
38+
### Backwards-incompatible changes
39+
40+
* drop support for PHP < 7.2
41+
3442
## 8.4.0
3543

3644
### Features

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
}
1616
],
1717
"require": {
18-
"php": ">=5.6.20",
18+
"php": ">=7.2.0",
1919
"ext-iconv": "*"
2020
},
2121
"require-dev": {

0 commit comments

Comments
 (0)