Skip to content

Commit

Permalink
Fix: Drop support for PHP 7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Nov 28, 2022
1 parent 30de86f commit fcff0c0
Show file tree
Hide file tree
Showing 6 changed files with 20 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.2, locked)"
- "Coding Standards (7.2, locked)"
- "Dependency Analysis (7.2, locked)"
- "Mutation Tests (7.2, locked)"
- "Static Code Analysis (7.2, locked)"
- "Tests (7.2, highest)"
- "Tests (7.2, locked)"
- "Tests (7.2, lowest)"
- "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)"
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.2"
- "7.3"

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

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

dependencies:
- "locked"
Expand Down Expand Up @@ -183,7 +183,6 @@ jobs:
strategy:
matrix:
php-version:
- "7.2"
- "7.3"
- "7.4"
- "8.0"
Expand Down Expand Up @@ -240,7 +239,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.2"
- "7.3"

dependencies:
- "locked"
Expand Down Expand Up @@ -290,7 +289,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.2"
- "7.3"

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.2"
- "7.3"

dependencies:
- "locked"
Expand Down
4 changes: 4 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 [`1.0.0...main`][1.0.0...main].

### Changed

- Dropped support for PHP 7.2 ([#259]), by [@localheinz]

## [`1.0.0`][1.0.0]

For a full diff see [`0.15.3...1.0.0`][0.15.3...1.0.0].
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"source": "https://github.com/ergebnis/phpstan-rules"
},
"require": {
"php": "^7.2 || ^8.0",
"php": "^7.3 || ^8.0",
"ext-mbstring": "*",
"nikic/php-parser": "^4.2.3",
"phpstan/phpstan": "^1.0.0"
Expand Down Expand Up @@ -56,7 +56,7 @@
"ergebnis/composer-normalize": true
},
"platform": {
"php": "7.2.33"
"php": "7.3.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 fcff0c0

Please sign in to comment.