Skip to content

Commit

Permalink
Merge pull request #168 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 7816bcb + 510f54d commit 8bbdf47
Show file tree
Hide file tree
Showing 6 changed files with 21 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 @@ -23,7 +23,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.1"
- "7.2"

dependencies:
- "locked"
Expand Down Expand Up @@ -195,7 +195,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 @@ -20,7 +20,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.2.1...main`][2.2.1...main].
For a full diff see [`2.2.2...main`][2.2.2...main].

## [`2.2.2`][2.2.2]

For a full diff see [`2.2.1...2.2.2`][2.2.1...2.2.2].

### Changed

* Dropped support for PHP 7.1 ([#168]), by [@dependabot]

## [`2.2.1`][2.2.1]

Expand Down Expand Up @@ -85,6 +93,7 @@ For a full diff see [`d899e77...1.0.0`][d899e77...1.0.0].
[2.1.0]: https://github.com/ergebnis/php-cs-fixer-config/releases/tag/2.1.0
[2.2.0]: https://github.com/ergebnis/php-cs-fixer-config/releases/tag/2.2.0
[2.2.1]: https://github.com/ergebnis/php-cs-fixer-config/releases/tag/2.2.1
[2.2.2]: https://github.com/ergebnis/php-cs-fixer-config/releases/tag/2.2.2

[d899e77...1.0.0]: https://github.com/ergebnis/php-cs-fixer-config/compare/d899e77...1.0.0
[1.0.0...1.1.0]: https://github.com/ergebnis/php-cs-fixer-config/compare/1.0.0...1.1.0
Expand All @@ -95,7 +104,8 @@ For a full diff see [`d899e77...1.0.0`][d899e77...1.0.0].
[2.0.0...2.1.0]: https://github.com/ergebnis/php-cs-fixer-config/compare/2.0.0...2.1.0
[2.1.2...2.2.0]: https://github.com/ergebnis/php-cs-fixer-config/compare/2.1.2...2.2.0
[2.2.0...2.2.1]: https://github.com/ergebnis/php-cs-fixer-config/compare/2.2.0...2.2.1
[2.2.1...main]: https://github.com/ergebnis/php-cs-fixer-config/compare/2.2.1...main
[2.2.1...2.2.2]: https://github.com/ergebnis/php-cs-fixer-config/compare/2.2.1...2.2.2
[2.2.2...main]: https://github.com/ergebnis/php-cs-fixer-config/compare/2.2.2...main

[#3]: https://github.com/ergebnis/php-cs-fixer-config/pull/3
[#14]: https://github.com/ergebnis/php-cs-fixer-config/pull/14
Expand All @@ -105,6 +115,7 @@ For a full diff see [`d899e77...1.0.0`][d899e77...1.0.0].
[#73]: https://github.com/ergebnis/php-cs-fixer-config/pull/73
[#133]: https://github.com/ergebnis/php-cs-fixer-config/pull/133
[#135]: https://github.com/ergebnis/php-cs-fixer-config/pull/135
[#168]: https://github.com/ergebnis/php-cs-fixer-config/pull/168

[@dependabot]: https://github.com/apps/dependabot
[@linuxjuggler]: https://github.com/linuxjuggler
Expand Down
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.1",
"php": "^7.2",
"ext-filter": "*",
"friendsofphp/php-cs-fixer": "~2.16.4"
},
Expand All @@ -34,7 +34,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 8bbdf47

Please sign in to comment.