feat(PHP): update default PHP version to 8.3 #109
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request updates the default PHP version used in the application from 8.2 to 8.3. The changes ensure that new sites and Docker configurations will use PHP 8.3 by default, improving compatibility with the latest PHP features and security updates.
Default PHP version updates:
__construct
method ofsrc/PHP.php
fromlatest
to8.3
, clarifying the default for site creation.create
method ofsrc/PHP.php
so that when the minimum supported version is 8, it now setsphp_version
to8.3
instead of8.2
.Docker configuration update:
generate_docker_compose_yml
insrc/Site_PHP_Docker.php
to useeasyengine/php8.3
when the PHP version is set tolatest
.