Increase minimum PHP version

Created on 8 March 2022, over 2 years ago
Updated 10 August 2023, 11 months ago

At the time of writing, PHP 7.3 is no longer receiving security updates and is marked end-of-life. At a minimum, we should require 7.4, which will receive security updates until November 28th, 2022, after which we should revisit this and likely bump it up to PHP 8.

See PHP: Supported Versions for a table with timelines.

πŸ“Œ Task
Status

Closed: won't fix

Version

2.0

Component

Code

Created by

πŸ‡¨πŸ‡¦Canada Ambient.Impact Toronto

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡©πŸ‡ͺGermany Anybody Porta Westfalica

    We shouldn't add a minimum PHP version of there's no reason for in our code. Only if code needs a minor version, it should be added. Caring for security updates of PHP is not our job.

  • Status changed to Active about 1 year ago
  • πŸ‡¨πŸ‡¦Canada Ambient.Impact Toronto

    I think I mainly added the security stuff as an extra motivation for people to use newer versions of PHP, but I agree that it's not our job. The main reason to enforce a minimum PHP version is so that the module won't be installable by Composer on a version of PHP that doesn't have the language features we use. For example, PHP 7.4 added class property type declarations, so classes that utilize them would be incompatible with PHP 7.3 and older. Specifying a minimum PHP version might prevent people from installing the module on an older version of PHP and then opening bug reports about the weird fatal errors they're getting because they didn't check the installation instructions or other documentation. It's dumb, but I've seen plenty of bug reports that could have been prevented in this way. Feel free to close if you don't agree, but wanted to explain why I think this is good to have.

  • πŸ‡©πŸ‡ͺGermany Anybody Porta Westfalica

    The main reason to enforce a minimum PHP version is so that the module won't be installable by Composer on a version of PHP that doesn't have the language features we use.

    That's the correct version and totally fine then! :)

    So we should set the version that's minimally required by the code. We shouldn't care if it's EOL. So 7.3 is still correct or do we need 7.4 or even 8.0?

  • πŸ‡©πŸ‡ͺGermany ChristianAdamski Berlin, Germany

    This is a relevant question. Especially for 2.x. D10 requires PHP 8.1. This is turn would allow for way stricter type hints which drastically improves code quality.

    So I would recommend increasing requirements for the 2.x branch to PHP 8.1 and then start adding type hints.

  • πŸ‡¨πŸ‡¦Canada Ambient.Impact Toronto

    Personally, I'd prefer to increase the minimum PHP taking both language features and end of life into consideration. While it's true that most of the stuff I work on doesn't have the primary purpose of keeping someone's PHP project secure, I treat everything I put out there as a teaching tool and to demonstrate best practices; I got to where I am because of all of the code other people have put out there, so this pays it forward. It's one of the reasons I document my code so thoroughly as well, so that people can learn from it. That's mostly just my own philosophy, so it's not a requirement here but wanted to explain where I'm coming from.

    So we should set the version that's minimally required by the code. We shouldn't care if it's EOL. So 7.3 is still correct or do we need 7.4 or even 8.0?

    I think 7.4 might be the minimum if we use certain union type hints but I haven't checked.

    This is a relevant question. Especially for 2.x. D10 requires PHP 8.1. This is turn would allow for way stricter type hints which drastically improves code quality.

    That's a good point - since Drupal 10 has a minimum of PHP 8.1, that would answer this question for us for 2.x. It might be a bit technically redundant to specify both a Drupal core minimum of 10 and minimum PHP 8.1, but if we start using language features that were introduced in PHP 8.0, for example, it would still be in line with my overall best practices philosophy to specify both PHP 8.0 and Drupal 10, and Composer will choose the highest minimum automatically.

  • Status changed to Needs review about 1 year ago
  • πŸ‡©πŸ‡ͺGermany Anybody Porta Westfalica

    I implemented the requested change, as there seems to be a consensus. Please review.

  • Open in Jenkins β†’ Open on Drupal.org β†’
    Core: 10.0.7 + Environment: PHP 8.1 & MySQL 8
    last update about 1 year ago
    1 pass
  • @anybody opened merge request.
  • Status changed to Needs work 11 months ago
  • πŸ‡©πŸ‡ͺGermany Grevil

    Hm, I disagree. We shouldn't drop the PHP 7.4 support only to support Union type hinting. If union type hinting is really necessary, we can still define it as a PHPDoc annotation. No need to drop the support if it isn't actually used (or necessary).

  • πŸ‡©πŸ‡ͺGermany Anybody Porta Westfalica

    Let's plan this for 3.x so we don't force anyone with an existing installation.

  • Status changed to Closed: won't fix 11 months ago
  • πŸ‡©πŸ‡ͺGermany Grevil

    I don't see a reason to introduce this (yet). Let's introduce this feature inside an issue, which introduces php 8 only features! Closing this for now.

Production build 0.69.0 2024