-
Notifications
You must be signed in to change notification settings - Fork 23
Description
We are facing issue using graze/parallel-process.It was working fine till php version 7.2.After upgrading PHP to 8.1.5 it is not getting installed.
Request you to provide some help.This package is very crucial for our project.
This is the error during composer install
graze/parallel-process[0.1, ..., 0.8.1] require php ^5.6 | ^7.0 -> your php version (8.1.5) does not satisfy that requirement.
graze/parallel-process 0.8.1 requires php ^5.5 | ^7.0 -> your php version (8.1.5) does not satisfy that requirement.
Root composer.json requires graze/parallel-process * -> satisfiable by graze/console-diff-renderer[0.1, ..., 0.8.1].
Below is the composer.json
{
"name": "pimcore/skeleton",
"type": "project",
"license": "GPL-3.0-or-later",
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"wikimedia/composer-merge-plugin": true
}
},
"require": {
"php": "8.1.5",
"aws/aws-sdk-php": "^3.108",
"elasticsearch/elasticsearch": "^8.2",
"graze/console-diff-renderer": "^0.6.2",
"graze/parallel-process": "^0.8.1",
"guzzlehttp/ringphp": "~1.1.1",
"guzzlehttp/streams": "~3.0.0",
"intervention/image": "^2.5",
"league/csv": "^9.2",
"ongr/elasticsearch-dsl": ">= 7.0",
"phpoffice/phpspreadsheet": "",
"pimcore/pimcore": "^10.4",
"react/promise": "~2.7.1",
"simplesamlphp/saml2": "~3.4.1",
"wikimedia/composer-merge-plugin": "",
"box/spout": "~3.0",
"symfony/monolog-bundle": "3.5.0"
},
"conflict": {
"monolog/monolog": ">=2"
},
"require-dev": {
"ext-mysqli": "*",
"cache/integration-tests": "^0.16.0",
"codeception/codeception": "~2.4.5"
},
"autoload": {
"psr-4": {
"App": "src/",
"Pimcore\Model\DataObject": "var/classes/DataObject",
"Pimcore\Model\Object": "var/classes/Object",
"Website": "legacy/website/lib"
}
},
"scripts": {
"post-create-project-cmd": "Pimcore\Composer::postCreateProject",
"post-install-cmd": [
"Pimcore\Composer::postInstall",
"@pimcore-scripts"
],
"post-update-cmd": [
"Pimcore\Composer::postUpdate",
"@pimcore-scripts",
"Pimcore\Composer::executeMigrationsUp",
"@pimcore-scripts",
"AppBundle\EventListener\Migration::executeMigrationsUp"
],
"pimcore-scripts": [
"Pimcore\Composer::clearCache",
"Pimcore\Composer::installAssets"
]
},
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "public",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"merge-plugin": {
"include": [
"composer.local.json"
],
"recurse": true,
"replace": true,
"merge-dev": true,
"merge-extra": false,
"merge-extra-deep": false,
"merge-scripts": false
}
}
}