-
-
Notifications
You must be signed in to change notification settings - Fork 9
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
Add a small PHP 8.0 fix #3
Changes from 4 commits
0998c41
55716b8
1a267d5
c1b12d1
e393636
d0b105b
895415a
ab35cfd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,12 +25,13 @@ | |
} | ||
}, | ||
"require": { | ||
"php": "^5.6 || ^7.0", | ||
"php": "^7.3 || ^8.0", | ||
weierophinney marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"laminas/laminas-zendframework-bridge": "^1.0" | ||
}, | ||
"require-dev": { | ||
"laminas/laminas-coding-standard": "~1.0.0", | ||
"phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4" | ||
"phpunit/phpunit": "^9.4", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. By bumping phpunit, you definitely have to change almost all tests contain Did you execute tests locally? You might want to fix those tests even without travis. 👍 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I did run the tests on PHP 8 and via There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
"ext-iconv": "*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please double check #2' checklist and compare with the current matrix.
For any version, we have
DEPS=lowest
andDEPS=latest
.Since
8.0
is not yet available on travis, we have to usenightly
instead.As we are dropping PHP <7.3 in
composer.json
, please also drop old versions from the matrix and ensure that all supported versions are being tested by travis.This includes:
nightly
in travis for now)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I did this initially but could test it due to travis not working. I thought at first this might have been an issue on my side. Will update this later on!