In a DDEV setup using PHP 8.5 and the following composer.json
{
"name": "project/distribution",
"config": {
"vendor-dir": "Packages/Libraries",
"bin-dir": "bin",
"sort-packages": true,
"allow-plugins": {
"neos/composer-plugin": true
}
},
"require": {
"neos/flow": "9.1.1"
},
"repositories": {
"packages": {
"type": "path",
"url": "./src/*"
}
},
"scripts": {
"post-update-cmd": "Neos\\Flow\\Composer\\InstallerScripts::postUpdateAndInstall",
"post-install-cmd": "Neos\\Flow\\Composer\\InstallerScripts::postUpdateAndInstall",
"post-package-update": "Neos\\Flow\\Composer\\InstallerScripts::postPackageUpdateAndInstall",
"post-package-install": "Neos\\Flow\\Composer\\InstallerScripts::postPackageUpdateAndInstall"
}
}
The composer installation fails with reference to `neos/utility-mediatypes` despite the version being available here from packagist.org neos/utility-mediatypes - Packagist.org
- Root composer.json requires neos/flow 9.1.1 -> satisfiable by neos/flow[9.1.1].
- neos/flow 9.1.1 requires neos/utility-mediatypes 9.1.1 -> found neos/utility-mediatypes[3.2.0, ..., 3.3.x-dev, 4.0.0, ..., 4.3.x-dev, 5.0.0, ..., 5.3.x-dev, 6.0.0, ..., 6.3.x-dev, 7.0.0, ..., 7.3.x-dev, 8.0.0, ..., 8.4.x-dev, 9.0.0-beta1, ..., 9.2.x-dev] but it does not match the constraint.
Anything in the internal infrastructure that needs a “kick” or how come this error appear?

