Skip to content

Commit

Permalink
Merge pull request #410 from ergebnis/fix/php73
Browse files Browse the repository at this point in the history
Fix: Drop support for PHP 7.3
  • Loading branch information
localheinz committed Dec 27, 2021
2 parents f3be17a + c9f30a0 commit 6def42d
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 20 deletions.
13 changes: 5 additions & 8 deletions .github/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,11 @@ branches:
required_approving_review_count: 1
required_status_checks:
contexts:
- "Code Coverage (7.3, locked)"
- "Coding Standards (7.3, locked)"
- "Dependency Analysis (7.3, locked)"
- "Mutation Tests (7.3, locked)"
- "Static Code Analysis (7.3, locked)"
- "Tests (7.3, highest)"
- "Tests (7.3, locked)"
- "Tests (7.3, lowest)"
- "Code Coverage (7.4, locked)"
- "Coding Standards (7.4, locked)"
- "Dependency Analysis (7.4, locked)"
- "Mutation Tests (7.4, locked)"
- "Static Code Analysis (7.4, locked)"
- "Tests (7.4, highest)"
- "Tests (7.4, locked)"
- "Tests (7.4, lowest)"
Expand Down
11 changes: 5 additions & 6 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.3"
- "7.4"

dependencies:
- "locked"
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.3"
- "7.4"

dependencies:
- "locked"
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.3"
- "7.4"

dependencies:
- "locked"
Expand Down Expand Up @@ -174,7 +174,6 @@ jobs:
strategy:
matrix:
php-version:
- "7.3"
- "7.4"
- "8.0"
- "8.1"
Expand Down Expand Up @@ -224,7 +223,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.3"
- "7.4"

dependencies:
- "locked"
Expand Down Expand Up @@ -274,7 +273,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.3"
- "7.4"

dependencies:
- "locked"
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.3"
- "7.4"

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

- Dropped support for PHP 7.2 ([#404]), by [@localheinz]
- Dropped support for PHP 7.3 ([#410]), by [@localheinz]

## [`3.1.1`][3.1.1]

Expand Down Expand Up @@ -140,6 +141,7 @@ For a full diff see [`8849fc6...1.0.0`][8849fc6...1.0.0].
[#172]: https://github.com/ergebnis/json-printer/pull/172
[#199]: https://github.com/ergebnis/json-printer/pull/199
[#404]: https://github.com/ergebnis/json-printer/pull/404
[#410]: https://github.com/ergebnis/json-printer/pull/410

[@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.3 || ^8.0",
"php": "^7.4 || ^8.0",
"ext-json": "*",
"ext-mbstring": "*"
},
Expand All @@ -34,7 +34,7 @@
"composer/package-versions-deprecated": true
},
"platform": {
"php": "7.3.32"
"php": "7.4.26"
},
"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 6def42d

Please sign in to comment.