Skip to content

Commit

Permalink
Fix: Drop support for PHP 7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Aug 30, 2020
1 parent 04a40ae commit c9ed7e5
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 17 deletions.
8 changes: 1 addition & 7 deletions .github/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,11 @@ branches:
required_status_checks:
contexts:
- "Code Coverage (7.4, locked)"
- "Coding Standards (7.1, locked)"
- "Coding Standards (7.2, locked)"
- "Compile Phar (7.4, locked)"
- "Dependency Analysis (7.4, locked)"
- "Static Code Analysis (7.4, locked)"
- "Static Code Analysis (7.4, locked)"
- "Tests (7.1, 1, highest)"
- "Tests (7.1, 1, locked)"
- "Tests (7.1, 1, lowest)"
- "Tests (7.1, 2, highest)"
- "Tests (7.1, 2, locked)"
- "Tests (7.1, 2, lowest)"
- "Tests (7.2, 1, highest)"
- "Tests (7.2, 1, locked)"
- "Tests (7.2, 1, lowest)"
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.1"
- "7.2"

dependencies:
- "locked"
Expand Down Expand Up @@ -228,7 +228,6 @@ jobs:
fail-fast: false
matrix:
php-version:
- "7.1"
- "7.2"
- "7.3"
- "7.4"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/renew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.1"
- "7.2"

dependencies:
- "locked"
Expand Down
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## Unreleased

For a full diff see [`2.8.0...main`][2.8.0...main].
For a full diff see [`2.8.1...main`][2.8.1...main].

## [`2.8.1`][2.8.1]

For a full diff see [`2.8.0...2.8.1`][2.8.0...2.8.1].

### Changed

* Dropped support for PHP 7.1 ([#529]), by [@localheinz]

## [`2.8.0`][2.8.0]

Expand Down Expand Up @@ -434,6 +442,7 @@ For a full diff see [`81bc3a8...0.1.0`][81bc3a8...0.1.0].
[2.6.1]: https://github.com/ergebnis/composer-normalize/releases/tag/2.6.1
[2.7.0]: https://github.com/ergebnis/composer-normalize/releases/tag/2.7.0
[2.8.0]: https://github.com/ergebnis/composer-normalize/releases/tag/2.8.0
[2.8.1]: https://github.com/ergebnis/composer-normalize/releases/tag/2.8.1

[81bc3a8...0.1.0]: https://github.com/ergebnis/composer-normalize/compare/81bc3a8...0.1.0
[0.1.0...0.2.0]: https://github.com/ergebnis/composer-normalize/compare/0.1.0...0.2.0
Expand Down Expand Up @@ -475,7 +484,8 @@ For a full diff see [`81bc3a8...0.1.0`][81bc3a8...0.1.0].
[2.6.0...2.6.1]: https://github.com/ergebnis/composer-normalize/compare/2.6.0...2.6.1
[2.6.1...2.7.0]: https://github.com/ergebnis/composer-normalize/compare/2.6.1...2.7.0
[2.7.0...2.8.0]: https://github.com/ergebnis/composer-normalize/compare/2.7.0...2.8.0
[2.8.0...main]: https://github.com/ergebnis/composer-normalize/compare/2.8.0...main
[2.8.0...2.8.1]: https://github.com/ergebnis/composer-normalize/compare/2.8.0...2.8.1
[2.8.1...main]: https://github.com/ergebnis/composer-normalize/compare/2.8.1...main

[#1]: https://github.com/ergebnis/composer-normalize/pull/1
[#2]: https://github.com/ergebnis/composer-normalize/pull/2
Expand Down Expand Up @@ -537,6 +547,7 @@ For a full diff see [`81bc3a8...0.1.0`][81bc3a8...0.1.0].
[#512]: https://github.com/ergebnis/composer-normalize/pull/512
[#515]: https://github.com/ergebnis/composer-normalize/pull/515
[#526]: https://github.com/ergebnis/composer-normalize/pull/526
[#529]: https://github.com/ergebnis/composer-normalize/pull/529

[@core23]: https://github.com/core23
[@dependabot]: https://github.com/dependabot
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
}
],
"require": {
"php": "^7.1 || ^8.0",
"php": "^7.2 || ^8.0",
"composer-plugin-api": "^1.1.0 || ^2.0.0",
"ergebnis/json-normalizer": "~0.13.0",
"ergebnis/json-printer": "^3.1.0",
Expand All @@ -40,7 +40,7 @@
},
"config": {
"platform": {
"php": "7.1.33"
"php": "7.2.33"
},
"preferred-install": "dist",
"sort-packages": true
Expand Down
6 changes: 3 additions & 3 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c9ed7e5

Please sign in to comment.