upgraded to php8.4 #71
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 introduces new Docker build environments for PHP versions 8.2, 8.3, 8.4, and 8.5, updates the Docker Compose configuration to use the new PHP 8.4 environment, and improves the organization and configuration of supporting scripts and files. It also adds a
.env.testingfile for SQLite in-memory testing and updates volume mounts for MySQL initialization scripts.Docker build environments and configuration:
php.ini,start-container, andsupervisord.conffor PHP 8.2, 8.3, 8.4, and 8.5 in thedocker/directory, standardizing build steps, environment variables, and service startup procedures. [1] [2] [3] [4] [5] [6] [7]Docker Compose and service updates:
compose.yamlto use the new PHP 8.4 Docker context and image for thelaravel.testservice, replacing the previous 8.2/8.5 Sail runtime.docker/mysql/create-testing-database.shlocation.Testing environment improvements:
.env.testingfile to configure in-memory SQLite for testing purposes.These changes modernize and modularize the Docker setup, making it easier to build and test against multiple PHP versions and improving the consistency and maintainability of the development environment.