Skip to content

Commit

Permalink
Merge pull request #59 from localheinz/fix/php7.0
Browse files Browse the repository at this point in the history
Fix: Drop support for PHP 7.0
  • Loading branch information
localheinz committed Jun 23, 2020
2 parents 40e658e + 3f630b4 commit a5aab7f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
php-version:
- "7.0"
- "7.1"

steps:
- name: "Checkout"
Expand Down Expand Up @@ -45,7 +45,6 @@ jobs:
strategy:
matrix:
php-version:
- "7.0"
- "7.1"
- "7.2"
- "7.3"
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ For a full diff see [`0.3.0...master`][0.3.0...master].
* Dropped support for PHP 5.4 ([#55]), by [@localheinz]
* Dropped support for PHP 5.5 ([#57]), by [@localheinz]
* Dropped support for PHP 5.6 ([#58]), by [@localheinz]
* Dropped support for PHP 7.0 ([#59]), by [@localheinz]

## [`0.3.0`][0.3.0]

Expand Down Expand Up @@ -151,6 +152,7 @@ For a full diff see [`fcfd14e...v0.1.1`][fcfd14e...0.1.1].
[#55]: https://github.com/nicmart/Tree/pull/55
[#57]: https://github.com/nicmart/Tree/pull/57
[#58]: https://github.com/nicmart/Tree/pull/58
[#59]: https://github.com/nicmart/Tree/pull/59

[@asalazar-pley]: https://github.com/asalazar-pley
[@Djuki]: https://github.com/Djuki
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
}
],
"require": {
"php": "^7.0"
"php": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "^4.8"
},
"config": {
"platform": {
"php": "7.0.33"
"php": "7.1.33"
}
},
"autoload": {
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 a5aab7f

Please sign in to comment.