-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Update updating.md #642
Update updating.md #642
Conversation
The documentation is slightly misleading in the supported php versions. It correctly states to use 8.2 or 8.3 at the top of the page, but scrolling down it says ''...running atleast 8.2'' indicating that 8.4 might also be supported (which it isn't)
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 for the PR! Easy rewords to do :)
@@ -34,8 +34,8 @@ There are no 1.8.x, 1.9.x, or 1.10.x releases of Wings. | |||
- PHP `8.2`, or `8.3` (recommended) | |||
- Composer `2.X` | |||
|
|||
**Before continuing**, please ensure that your system and web server configuration has been upgraded to at least PHP 8.2 by running `php -v` and Composer 2 by running `composer --version`. You | |||
should see an output similar to the result below. If you do not see at least PHP 8.2 and Composer 2, you will need to upgrade by following | |||
**Before continuing**, please ensure that your system and web server configuration has been upgraded to at least PHP 8.2 or 8.3 by running `php -v` and Composer 2 by running `composer --version`. You |
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.
"at least PHP 8.2 or 8.3" still implies that PHP 8.4 is supported. Could you reword this?
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.
Actually, it might be worth following the same method as in #625. That would future proof this from being incorrect in the future.
**Before continuing**, please ensure that your system and web server configuration has been upgraded to at least PHP 8.2 by running `php -v` and Composer 2 by running `composer --version`. You | ||
should see an output similar to the result below. If you do not see at least PHP 8.2 and Composer 2, you will need to upgrade by following | ||
**Before continuing**, please ensure that your system and web server configuration has been upgraded to at least PHP 8.2 or 8.3 by running `php -v` and Composer 2 by running `composer --version`. You | ||
should see an output similar to the result below. If you do not see at least PHP 8.2 or 8,3 and Composer 2, you will need to upgrade by following |
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.
Same here
The documentation is slightly misleading in the supported php versions. It correctly states to use 8.2 or 8.3 at the top of the page, but scrolling down it says ''...running atleast 8.2'' indicating that 8.4 might also be supported (which it isn't)
Changed it to say ''...running atleast 8.2 or 8.3'' to avoid some confusion
Thanks to https://github.com/DataDropp for noticing it