Skip to content

Commit 9648ced

Browse files
authored
[TASK] Drop support for PHP < 7.2 (#420)
1 parent 4e9a54c commit 9648ced

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-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: 2 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

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)