Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds support for upcoming PHP 8.0 release #16

Merged
merged 2 commits into from
Aug 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,16 @@ matrix:
- php: 7.4
env:
- DEPS=latest
- php: nightly
env:
- DEPS=lowest
- COMPOSER_ARGS="--no-interaction --ignore-platform-reqs"
- php: nightly
env:
- DEPS=latest
- COMPOSER_ARGS="--no-interaction --ignore-platform-reqs"
allow_failures:
- php: nightly

before_install:
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ All notable changes to this project will be documented in this file, in reverse

- [#15](https://github.com/laminas/laminas-modulemanager/pull/15) adds support for caching closures when caching configuration.

- [#16](https://github.com/laminas/laminas-modulemanager/pull/16) adds support for the upcoming PHP 8.0 release.

### Changed

- Nothing.
Expand All @@ -20,6 +22,12 @@ All notable changes to this project will be documented in this file, in reverse

- [#8](https://github.com/laminas/laminas-modulemanager/pull/8) removes support for PHP versions prior to PHP 7.3.

- [#16](https://github.com/laminas/laminas-modulemanager/pull/16) removes support for v2 releases (deprecated) of the following components:
- laminas-config
- laminas-eventmanger
- laminas-servicemanager
- laminas-stdlib

### Fixed

- Nothing.
Expand Down
20 changes: 10 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,21 +25,21 @@
}
},
"require": {
"php": "^7.3",
"php": "^7.3 || ^8.0",
"brick/varexporter": "^0.3.2",
"laminas/laminas-config": "^3.1 || ^2.6",
"laminas/laminas-eventmanager": "^3.2 || ^2.6.3",
"laminas/laminas-stdlib": "^3.1 || ^2.7",
"laminas/laminas-zendframework-bridge": "^1.0",
"laminas/laminas-config": "^3.4",
"laminas/laminas-eventmanager": "^3.3",
"laminas/laminas-stdlib": "^3.3",
"laminas/laminas-zendframework-bridge": "^1.1",
"webimpress/safe-writer": "^1.0.2 || ^2.1"
},
"require-dev": {
"laminas/laminas-coding-standard": "~1.0.0",
"laminas/laminas-console": "^2.6",
"laminas/laminas-di": "^2.6",
"laminas/laminas-loader": "^2.5",
"laminas/laminas-mvc": "^3.0 || ^2.7",
"laminas/laminas-servicemanager": "^3.0.3 || ^2.7.5",
"laminas/laminas-console": "^2.8",
"laminas/laminas-di": "^2.6.1",
"laminas/laminas-loader": "^2.6.1",
"laminas/laminas-mvc": "^3.1.1",
"laminas/laminas-servicemanager": "^3.4.1",
"phpunit/phpunit": "^9.3.7"
},
"suggest": {
Expand Down