Skip to content

Commit

Permalink
[TASK] Drop support for PHP 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverklee committed Feb 1, 2024
1 parent 4e9a54c commit 9300e54
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
php-version: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]
php-version: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ]

steps:
- name: Checkout
Expand All @@ -39,7 +39,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: [ '5.6', '7.0', '7.1', '7.2', '7.3' ]
php-version: [ '7.2', '7.3' ]
coverage: [ 'none' ]
include:
- php-version: '7.4'
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).

### Removed

- Drop support for PHP < 7.2 (#420)

### Fixed

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

## 9.0.0

### Backwards-incompatible changes

* drop support for PHP < 7.2

## 8.4.0

### Features
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": ">=5.6.20",
"php": ">=7.2.0",
"ext-iconv": "*"
},
"require-dev": {
Expand Down

0 comments on commit 9300e54

Please sign in to comment.