Skip to content

Commit 7b3022e

Browse files
authored
Merge pull request #177 from ergebnis/feature/php8
Enhancement: Add support for PHP 8.0
2 parents d6dde05 + a1ba730 commit 7b3022e

File tree

5 files changed

+20
-5
lines changed

5 files changed

+20
-5
lines changed

.github/settings.yml

+3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ branches:
2828
- "Tests (7.4, highest)"
2929
- "Tests (7.4, locked)"
3030
- "Tests (7.4, lowest)"
31+
- "Tests (8.0, highest)"
32+
- "Tests (8.0, locked)"
33+
- "Tests (8.0, lowest)"
3134
strict: false
3235
restrictions:
3336

.github/workflows/integrate.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ jobs:
198198
- "7.2"
199199
- "7.3"
200200
- "7.4"
201+
- "8.0"
201202

202203
dependencies:
203204
- "lowest"

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.1...main`][1.0.1...main].
9+
For a full diff see [`1.1.0...main`][1.1.0...main].
10+
11+
## [`1.1.0`][1.1.0]
12+
13+
For a full diff see [`1.0.1...1.1.0`][1.0.1...1.1.0].
14+
15+
## Changed
16+
17+
* Added support for PHP 7.1 ([#177]), by [@localheinz]
1018

1119
## [`1.0.1`][1.0.1]
1220

@@ -38,11 +46,13 @@ For a full diff see [`675601b...0.1.0`][675601b...0.1.0].
3846
[0.1.0]: https://github.com/ergebnis/license/releases/tag/0.1.0
3947
[1.0.0]: https://github.com/ergebnis/license/releases/tag/1.0.0
4048
[1.0.1]: https://github.com/ergebnis/license/releases/tag/1.0.1
49+
[1.1.0]: https://github.com/ergebnis/license/releases/tag/1.1.0
4150

4251
[675601b...0.1.0]: https://github.com/ergebnis/license/compare/675601b...0.1.0
4352
[0.1.0...1.0.0]: https://github.com/ergebnis/license/compare/0.1.0...1.0.0
4453
[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
54+
[1.0.1...1.1.0]: https://github.com/ergebnis/license/compare/1.0.1...1.1.0
55+
[1.1.0...main]: https://github.com/ergebnis/license/compare/1.1.0...main
4656

4757
[#7]: https://github.com/ergebnis/license/pull/7
4858
[#10]: https://github.com/ergebnis/license/pull/10
@@ -53,5 +63,6 @@ For a full diff see [`675601b...0.1.0`][675601b...0.1.0].
5363
[#34]: https://github.com/ergebnis/license/pull/34
5464
[#38]: https://github.com/ergebnis/license/pull/38
5565
[#171]: https://github.com/ergebnis/license/pull/171
66+
[#177]: https://github.com/ergebnis/license/pull/177
5667

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

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}
1515
],
1616
"require": {
17-
"php": "^7.2",
17+
"php": "^7.2 || ^8.0",
1818
"ext-filter": "*"
1919
},
2020
"require-dev": {

composer.lock

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

0 commit comments

Comments
 (0)