Problem/Motivation
#3053363: Remove support for PHP 5 in Drupal 8.8 added the following change to composer.json:
+++ b/core/composer.json
@@ -17,7 +17,7 @@
"ext-SPL": "*",
"ext-tokenizer": "*",
"ext-xml": "*",
- "php": "^5.5.9|>=7.0.8",
+ "php": ">=7.0.8",
"symfony/class-loader": "~3.4.0",
"symfony/console": "~3.4.0",
"symfony/dependency-injection": "~3.4.26",
However, this change has not been extended to the resulting composer.lock. As a result, composer.lock has a diff whenever you would run composer update without any changes, such as composer update nothing or composer update --lock.
Proposed resolution
Update composer.lock with the updated PHP requirement.
Remaining tasks
- Write a patch
- Review
- Commit
User interface changes
None.
API changes
None.
Data model changes
None.
Comments
Comment #2
idebr commentedAttached patch is the output of
composer update nothingagainst HEAD.Comment #3
cilefen commentedI get the identical change so this is ready if it passes.
Comment #4
alexpottCommitted c7a275b and pushed to 8.8.x. Thanks!