-
Notifications
You must be signed in to change notification settings - Fork 22
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
allow php7 #5
allow php7 #5
Conversation
update sdk to 1.7 and use the same php requirements
Runs it against PHP7 on Travis
@phptek bump |
@@ -14,8 +14,8 @@ | |||
"silverstripe/sentry": "*" | |||
}, | |||
"require": { | |||
"php": ">=5.3.3,<7", | |||
"sentry/sentry": "1.6.2", | |||
"php": "^5.3|^7.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.
The module uses PHP's JavaScript array notation introduced in 5.4. (So the platform req should always have been 5.4, my bad)
I've not seen that pipe syntax before and looking around it either represents bitwise or an older logical OR operator. Did you mean to use that? What's wrong with simply updating the range as before, but specifying 5.4 on the LHS e.g. ">=5.4,<=7.2"
? (Note 7.2 is the upper limit of what SS 3.6 will run on)
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.
@lekoala Bump
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.
sure that make sense, do you need anything from my side?
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.
Nah, I'll merge it and patch it up when I get a moment. Cheers!
update sdk to 1.7 and use the same php requirements