Skip to content

Commit

Permalink
Support for PHP 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalbaljet authored and localheinz committed Nov 27, 2020
1 parent dd515a6 commit a91a6a2
Show file tree
Hide file tree
Showing 4 changed files with 443 additions and 245 deletions.
1 change: 1 addition & 0 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ jobs:
- "7.2"
- "7.3"
- "7.4"
- "8.0"

dependencies:
- "locked"
Expand Down
16 changes: 14 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 [`0.3.0...master`][0.3.0...master].
For a full diff see [`0.3.1...master`][0.3.1...master].

## [`0.3.1`][0.3.1]

For a full diff see [`0.3.0...0.3.1`][0.3.0...0.3.1].

### Added

* Added support for PHP 8.0 ([#79]), by [@pascalbaljet]

### Changed

Expand Down Expand Up @@ -123,6 +131,7 @@ For a full diff see [`fcfd14e...v0.1.1`][fcfd14e...0.1.1].
[0.2.6]: https://github.com/nicmart/Tree/releases/tag/v0.2.6
[0.2.7]: https://github.com/nicmart/Tree/releases/tag/v0.2.7
[0.3.0]: https://github.com/nicmart/Tree/releases/tag/v0.3.0
[0.3.1]: https://github.com/nicmart/Tree/releases/tag/0.3.1

[fcfd14e...0.1.1]: https://github.com/nicmart/Tree/compare/fcfd14e...v0.1.1
[0.1.1...0.1.2]: https://github.com/nicmart/Tree/compare/v0.1.1...v0.1.2
Expand All @@ -135,7 +144,8 @@ For a full diff see [`fcfd14e...v0.1.1`][fcfd14e...0.1.1].
[0.2.5...0.2.6]: https://github.com/nicmart/Tree/compare/v0.2.5...v0.2.6
[0.2.6...0.2.7]: https://github.com/nicmart/Tree/compare/v0.2.6...v0.2.7
[0.2.7...0.3.0]: https://github.com/nicmart/Tree/compare/v0.2.7...0.3.0
[0.3.0...master]: https://github.com/nicmart/Tree/compare/0.3.0...master
[0.3.0...0.3.1]: https://github.com/nicmart/Tree/compare/0.3.0...0.3.1
[0.3.1...master]: https://github.com/nicmart/Tree/compare/0.3.1...master

[#3]: https://github.com/nicmart/Tree/issues/3
[#4]: https://github.com/nicmart/Tree/issues/4
Expand All @@ -153,10 +163,12 @@ For a full diff see [`fcfd14e...v0.1.1`][fcfd14e...0.1.1].
[#57]: https://github.com/nicmart/Tree/pull/57
[#58]: https://github.com/nicmart/Tree/pull/58
[#59]: https://github.com/nicmart/Tree/pull/59
[#79]: https://github.com/nicmart/Tree/pull/79

[@asalazar-pley]: https://github.com/asalazar-pley
[@Djuki]: https://github.com/Djuki
[@jdeniau]: https://github.com/jdeniau
[@localheinz]: https://github.com/localheinz
[@mdwheele]: https://github.com/mdwheele
[@nicmart]: https://github.com/nicmart
[@pascalbaljet]: https://github.com/pascalbaljet
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
}
],
"require": {
"php": "^7.1"
"php": "^7.1 || ^8.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.8.0",
"ergebnis/license": "^1.0.0",
"ergebnis/php-cs-fixer-config": "^2.2.1",
"phpunit/phpunit": "^7.5.20"
"phpunit/phpunit": "^7.5.20 || ^9.4.3"
},
"config": {
"platform": {
Expand Down
Loading

0 comments on commit a91a6a2

Please sign in to comment.