Skip to content
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

PHP x.x support #1511

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Conversation

dalepgrant
Copy link
Sponsor Contributor

@dalepgrant dalepgrant commented Jan 17, 2024

Refactors php version vars to be dynamic by default whilst allowing overrides.

Motivation

The current approach requires a file to be duplicated and renamed for every php version release. At time of writing, the contents of said files covering 7.4 - 8.2 (4 files total) are identical, except for the php version number itself. To add support for php 8.3, a fifth file would need to be added. Edit to add: since #1514, this fifth file has now been added.

Proposal

By making the default file dynamic, we can avoid duplicating files each time a new php version is released. If something changes from one release to the next, an override file can be created using the php version as the filename (i.e. we can fallback to the existing method).

Considerations

I initially started to put these vars in the php/defaults/main.yml file, as these are essentially defaults. However, ultimately I settled on php/vars/version-specific-defaults.yml which a) is closer to what developers are currently familiar with, b) separates php version specific defaults from other defaults and c) allows for easy duplicate & rename to override.

I've only tested this on local so far and everything provisions as expected using php 8.3.

Comments have been written with 8.1 8.2 as that is the current default version for Trellis.

@swalkinshaw
Copy link
Member

🤔 interesting!

I have a few initial concerns:

  • this works right now because the list of default packages has remained consistent across versions. Say for example 8.4 required a new package, then we'd have to include 8.4.yml file right?
  • it might be less obvious when Trellis "officially" supports a new PHP version since there'd be code changes

But on the other hand, requiring no code changes for people running Trellis projects is a benefit too and that's probably your main reason for proposing this change.

@dalepgrant
Copy link
Sponsor Contributor Author

dalepgrant commented Jan 17, 2024

Say for example 8.4 required a new package, then we'd have to include 8.4.yml file right?

Correct. As it stands though, we have to add a 8.4.yml file even if there are no package changes.

it might be less obvious when Trellis "officially" supports a new PHP version since there'd be code changes

A suitable PR (and changelog entry) can still change the 'out of the box' php version to highlight official support, like #1484. We could also add a line to the readme and/or the docs stating something along the lines of "Trellis officially supports PHP 7.4 - 8.2, more recent versions may also work but have not yet been tested by the community."

Edit to add - thanks for reviewing!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants