Skip to content

Commit

Permalink
Merge pull request #199 from ergebnis/fix/php7.1
Browse files Browse the repository at this point in the history
Fix: Drop support for PHP 7.1
  • Loading branch information
localheinz committed Aug 30, 2020
2 parents b983dd7 + 2e1eff1 commit 1b41936
Show file tree
Hide file tree
Showing 6 changed files with 23 additions and 14 deletions.
5 changes: 1 addition & 4 deletions .github/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,10 @@ branches:
required_status_checks:
contexts:
- "Code Coverage (7.4, locked)"
- "Coding Standards (7.1, locked)"
- "Coding Standards (7.2, locked)"
- "Dependency Analysis (7.4, locked)"
- "Mutation Tests (7.4, locked)"
- "Static Code Analysis (7.4, locked)"
- "Tests (7.1, highest)"
- "Tests (7.1, locked)"
- "Tests (7.1, lowest)"
- "Tests (7.2, highest)"
- "Tests (7.2, locked)"
- "Tests (7.2, 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 @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.1"
- "7.2"

dependencies:
- "locked"
Expand Down Expand Up @@ -218,7 +218,6 @@ jobs:
strategy:
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 @@ -18,7 +18,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 [`3.1.0...main`][3.1.0...main].
For a full diff see [`3.1.1...main`][3.1.1...main].

## [`3.1.1`][3.1.1]

For a full diff see [`3.1.0...3.1.1`][3.1.0...3.1.1].

### Changed

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

## [`3.1.0`][3.1.0]

Expand Down Expand Up @@ -107,6 +115,7 @@ For a full diff see [`8849fc6...1.0.0`][8849fc6...1.0.0].
[3.0.1]: https://github.com/ergebnis/json-printer/releases/tag/3.0.1
[3.0.2]: https://github.com/ergebnis/json-printer/releases/tag/3.0.2
[3.1.0]: https://github.com/ergebnis/json-printer/releases/tag/3.1.0
[3.1.1]: https://github.com/ergebnis/json-printer/releases/tag/3.1.1

[8849fc6...1.0.0]: https://github.com/ergebnis/json-printer/compare/8849fc6...1.0.0
[1.0.0...1.1.0]: https://github.com/ergebnis/json-printer/compare/1.0.0...1.1.0
Expand All @@ -116,7 +125,8 @@ For a full diff see [`8849fc6...1.0.0`][8849fc6...1.0.0].
[3.0.0...3.0.1]: https://github.com/ergebnis/json-printer/compare/3.0.0...3.0.1
[3.0.1...3.0.2]: https://github.com/ergebnis/json-printer/compare/3.0.1...3.0.2
[3.0.2...3.1.0]: https://github.com/ergebnis/json-printer/compare/3.0.2...3.1.0
[3.1.0...main]: https://github.com/ergebnis/json-printer/compare/3.1.0...main
[3.1.0...3.1.1]: https://github.com/ergebnis/json-printer/compare/3.1.0...3.1.1
[3.1.1...main]: https://github.com/ergebnis/json-printer/compare/3.1.1...main

[#33]: https://github.com/ergebnis/json-printer/pull/33
[#37]: https://github.com/ergebnis/json-printer/pull/37
Expand All @@ -126,6 +136,7 @@ For a full diff see [`8849fc6...1.0.0`][8849fc6...1.0.0].
[#72]: https://github.com/ergebnis/json-printer/pull/72
[#76]: https://github.com/ergebnis/json-printer/pull/77
[#172]: https://github.com/ergebnis/json-printer/pull/172
[#199]: https://github.com/ergebnis/json-printer/pull/199

[@ergebnis]: https://github.com/ergebnis
[@localheinz]: https://github.com/localheinz
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "^7.1 || ^8.0",
"php": "^7.2 || ^8.0",
"ext-json": "*",
"ext-mbstring": "*"
},
Expand All @@ -37,7 +37,7 @@
},
"config": {
"platform": {
"php": "7.1.33"
"php": "7.2.33"
},
"preferred-install": "dist",
"sort-packages": true
Expand Down
8 changes: 5 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 1b41936

Please sign in to comment.