Skip to content

Commit 7335162

Browse files
authored
Merge pull request #171 from ergebnis/fix/php7.1
Fix: Drop support for PHP 7.1
2 parents f67fb14 + d3a16ce commit 7335162

File tree

6 files changed

+21
-14
lines changed

6 files changed

+21
-14
lines changed

.github/settings.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,10 @@ branches:
1515
required_status_checks:
1616
contexts:
1717
- "Code Coverage (7.4, locked)"
18-
- "Coding Standards (7.1, locked)"
18+
- "Coding Standards (7.2, locked)"
1919
- "Dependency Analysis (7.4, locked)"
2020
- "Mutation Tests (7.4, locked)"
2121
- "Static Code Analysis (7.4, locked)"
22-
- "Tests (7.1, highest)"
23-
- "Tests (7.1, locked)"
24-
- "Tests (7.1, lowest)"
2522
- "Tests (7.2, highest)"
2623
- "Tests (7.2, locked)"
2724
- "Tests (7.2, lowest)"

.github/workflows/integrate.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
matrix:
2525
php-version:
26-
- "7.1"
26+
- "7.2"
2727

2828
dependencies:
2929
- "locked"
@@ -195,7 +195,6 @@ jobs:
195195
strategy:
196196
matrix:
197197
php-version:
198-
- "7.1"
199198
- "7.2"
200199
- "7.3"
201200
- "7.4"

.github/workflows/renew.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
matrix:
2222
php-version:
23-
- "7.1"
23+
- "7.2"
2424

2525
dependencies:
2626
- "locked"

CHANGELOG.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## Unreleased
88

9-
For a full diff see [`1.0.0...main`][1.0.0...main].
9+
For a full diff see [`1.0.1...main`][1.0.1...main].
10+
11+
## [`1.0.1`][1.0.1]
12+
13+
For a full diff see [`1.0.0...1.0.1`][1.0.0...1.0.1].
14+
15+
## Changed
16+
17+
* Dropped support for PHP 7.1 ([#171]), by [@localheinz]
1018

1119
## [`1.0.0`][1.0.0]
1220

@@ -29,10 +37,12 @@ For a full diff see [`675601b...0.1.0`][675601b...0.1.0].
2937

3038
[0.1.0]: https://github.com/ergebnis/license/releases/tag/0.1.0
3139
[1.0.0]: https://github.com/ergebnis/license/releases/tag/1.0.0
40+
[1.0.1]: https://github.com/ergebnis/license/releases/tag/1.0.1
3241

3342
[675601b...0.1.0]: https://github.com/ergebnis/license/compare/675601b...0.1.0
3443
[0.1.0...1.0.0]: https://github.com/ergebnis/license/compare/0.1.0...1.0.0
35-
[1.0.0...main]: https://github.com/ergebnis/license/compare/1.0.0...main
44+
[1.0.0...1.0.1]: https://github.com/ergebnis/license/compare/1.0.0...1.0.1
45+
[1.0.1...main]: https://github.com/ergebnis/license/compare/1.0.1...main
3646

3747
[#7]: https://github.com/ergebnis/license/pull/7
3848
[#10]: https://github.com/ergebnis/license/pull/10
@@ -42,5 +52,6 @@ For a full diff see [`675601b...0.1.0`][675601b...0.1.0].
4252
[#33]: https://github.com/ergebnis/license/pull/33
4353
[#34]: https://github.com/ergebnis/license/pull/34
4454
[#38]: https://github.com/ergebnis/license/pull/38
55+
[#171]: https://github.com/ergebnis/license/pull/171
4556

4657
[@localheinz]: https://github.com/localheinz

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}
1515
],
1616
"require": {
17-
"php": "^7.1",
17+
"php": "^7.2",
1818
"ext-filter": "*"
1919
},
2020
"require-dev": {
@@ -36,7 +36,7 @@
3636
},
3737
"config": {
3838
"platform": {
39-
"php": "7.1.33"
39+
"php": "7.2.33"
4040
},
4141
"preferred-install": "dist",
4242
"sort-packages": true

composer.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)