Skip to content

Commit

Permalink
Merge pull request #157 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 Nov 22, 2021
2 parents da97c60 + 83f468b commit 4e247f7
Show file tree
Hide file tree
Showing 6 changed files with 21 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 @@ -20,7 +20,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.3"
- "7.4"

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

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

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

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

dependencies:
- "locked"
Expand Down Expand Up @@ -284,7 +284,6 @@ jobs:
strategy:
matrix:
php-version:
- "7.3"
- "7.4"
- "8.0"
- "8.1"
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

For a full diff see [`0.2.0...main`][0.2.0...main].

### Changed

* Dropped support for PHP 7.3 ([#157]), by [@localheinz]

## [`0.2.0`][0.2.0]

For a full diff see [`0.1.0...0.2.0`][0.1.0...0.2.0].
Expand Down Expand Up @@ -38,5 +42,6 @@ For a full diff see [`4e97e14...0.1.0`][4e97e14...0.1.0].
[#2]: https://github.com/ergebnis/front-matter/pull/2
[#8]: https://github.com/ergebnis/front-matter/pull/8
[#9]: https://github.com/ergebnis/front-matter/pull/9
[#157]: https://github.com/ergebnis/front-matter/pull/157

[@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 @@ -11,7 +11,7 @@
}
],
"require": {
"php": "^7.3 || ^8.0",
"php": "^7.4 || ^8.0",
"symfony/yaml": "^5.2.5"
},
"require-dev": {
Expand All @@ -32,7 +32,7 @@
},
"config": {
"platform": {
"php": "7.3.24"
"php": "7.4.25"
},
"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 4e247f7

Please sign in to comment.