-
Notifications
You must be signed in to change notification settings - Fork 11
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
API phpunit 9 support #28
API phpunit 9 support #28
Conversation
cba68d0
to
774b5ea
Compare
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.
Just need to update the module to officially support PHP8 and run a PHP8 build.
.travis.yml
Outdated
- php: 7.4 | ||
env: PHPUNIT_TEST=1 |
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.
- php: 7.4 | |
env: PHPUNIT_TEST=1 | |
- php: 7.4 | |
env: PHPUNIT_TEST=1 | |
- php: 8.0 | |
env: PHPUNIT_TEST=1 |
If you want to go a step beyond, you could remove the PHPUNIT_TEST
env var altogether and always run the build.
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.
Updated
composer.json
Outdated
@@ -3,23 +3,18 @@ | |||
"description": "Connects the PHP development server to SilverStripe", | |||
"license": "MIT", | |||
"require": { | |||
"php": "^5.6||^7.0", | |||
"php": "^7.3", |
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.
"php": "^7.3", | |
"php": "^7.3 || ^8.0", |
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.
Updated
774b5ea
to
1939528
Compare
1939528
to
9ad015f
Compare
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.
LGTM
Issue silverstripe/silverstripe-framework#10019