-
Notifications
You must be signed in to change notification settings - Fork 52
Closed
Labels
questionFurther information is requestedFurther information is requested
Milestone
Description
I suggest the following patch to composer.json:
Unlocking the upper bound of PHP to give back control to end users about where they want to run the tool.
Replacing some polyfills that don't need to be installed, but would be otherwise.
--- a/composer.json
+++ b/composer.json
@@ -26,7 +26,7 @@
}
],
"require": {
- "php": "8.1.*||8.2.*||8.3.*",
+ "php": ">=8.1",
"ext-zip": "*",
"composer/composer": "dev-main@dev",
"guzzlehttp/guzzle": "^7.8",
@@ -44,6 +44,11 @@
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.22"
},
+ "replace": {
+ "symfony/polyfill-php81": "*",
+ "symfony/polyfill-php80": "*",
+ "symfony/polyfill-php73": "*"
+ },
"config": {
"sort-packages": true,
"preferred-install": "dist",Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested