Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: Drop support for PHP 7.3 #852

Merged
merged 1 commit into from Dec 28, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 5 additions & 8 deletions .github/settings.yml
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)"
- "Compile Phar (7.3, locked)"
- "Dependency Analysis (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)"
- "Compile Phar (7.4, locked)"
- "Dependency Analysis (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
Expand Up @@ -22,7 +22,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.3"
- "7.4"

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

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

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

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

dependencies:
- "locked"
Expand Down Expand Up @@ -291,7 +291,6 @@ jobs:
strategy:
matrix:
php-version:
- "7.3"
- "7.4"
- "8.0"
- "8.1"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.3"
- "7.4"

dependencies:
- "locked"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/renew.yaml
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.3"
- "7.4"

dependencies:
- "locked"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update.yaml
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.3"
- "7.4"

steps:
- name: "Checkout"
Expand Down
15 changes: 13 additions & 2 deletions CHANGELOG.md
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.20.0...main`][2.20.0...main].
For a full diff see [`2.21.0...main`][2.21.0...main].

## [`2.21.0`][2.21.0]

For a full diff see [`2.20.0...2.21.0`][2.20.0...2.21.0].

### Changed

- Dropped support for PHP 7.3 ([#852]), by [@localheinz]

## [`2.20.0`][2.20.0]

Expand Down Expand Up @@ -643,6 +651,7 @@ For a full diff see [`81bc3a8...0.1.0`][81bc3a8...0.1.0].
[2.18.0]: https://github.com/ergebnis/composer-normalize/releases/tag/2.18.0
[2.19.0]: https://github.com/ergebnis/composer-normalize/releases/tag/2.19.0
[2.20.0]: https://github.com/ergebnis/composer-normalize/releases/tag/2.20.0
[2.21.0]: https://github.com/ergebnis/composer-normalize/releases/tag/2.21.0

[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 @@ -705,7 +714,8 @@ For a full diff see [`81bc3a8...0.1.0`][81bc3a8...0.1.0].
[2.17.0...2.18.0]: https://github.com/ergebnis/composer-normalize/compare/2.17.0...2.18.0
[2.18.0...2.19.0]: https://github.com/ergebnis/composer-normalize/compare/2.18.0...2.19.0
[2.19.0...2.20.0]: https://github.com/ergebnis/composer-normalize/compare/2.19.0...2.20.0
[2.20.0...main]: https://github.com/ergebnis/composer-normalize/compare/2.20.0...main
[2.20.0...2.21.0]: https://github.com/ergebnis/composer-normalize/compare/2.20.0...2.21.0
[2.21.0...main]: https://github.com/ergebnis/composer-normalize/compare/2.21.0...main

[#1]: https://github.com/ergebnis/composer-normalize/pull/1
[#2]: https://github.com/ergebnis/composer-normalize/pull/2
Expand Down Expand Up @@ -794,6 +804,7 @@ For a full diff see [`81bc3a8...0.1.0`][81bc3a8...0.1.0].
[#829]: https://github.com/ergebnis/composer-normalize/pull/829
[#842]: https://github.com/ergebnis/composer-normalize/pull/842
[#845]: https://github.com/ergebnis/composer-normalize/pull/845
[#852]: https://github.com/ergebnis/composer-normalize/pull/852

[@core23]: https://github.com/core23
[@dependabot]: https://github.com/dependabot
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Expand Up @@ -21,7 +21,7 @@
"source": "https://github.com/ergebnis/composer-normalize"
},
"require": {
"php": "^7.3 || ^8.0",
"php": "^7.4 || ^8.0",
"composer-plugin-api": "^2.0.0",
"ergebnis/json-normalizer": "^1.0.3",
"ergebnis/json-printer": "^3.1.1",
Expand Down Expand Up @@ -55,7 +55,7 @@
"composer/package-versions-deprecated": true
},
"platform": {
"php": "7.3.32"
"php": "7.4.26"
},
"preferred-install": "dist",
"sort-packages": true
Expand Down
8 changes: 4 additions & 4 deletions composer.lock

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