-
Notifications
You must be signed in to change notification settings - Fork 3
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
#83 Make the package compatible with php 8.3 #84
base: 2.x
Are you sure you want to change the base?
#83 Make the package compatible with php 8.3 #84
Conversation
composer.json
Outdated
@@ -12,7 +12,7 @@ | |||
"cweagans/composer-patches": "^1 || ^2", | |||
"php-http/logger-plugin": "^1", | |||
"php-http/message": "~1.13", | |||
"phpro/soap-client": "~2.4", | |||
"phpro/soap-client": ">=3 <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.
Hi,
what is the difference between >=3 <4
and ^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.
Hello,
No difference, it's just that ^3
is the shorter writing of >=3 <4
.
Do you prefer the shorter writing ?
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.
Hi,
Thanks for the clarification! I don’t have a strong preference personally, but it does seem like the ^3 syntax is more widely adopted in the PHP community. Given the Minimum Description Length principle, which suggests using the most concise and clear format, it might make sense to stick with the shorter ^3 notation.
Thanks again for the explanation!
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.
I changed it to the shorter writing.
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.
Thanks!
421d12d
to
ff54761
Compare
Description
Make the package compatible with PHP 8.3
Change log
Commands
#Using php 8.1, 8.2 & 8.3 run composer install