I tried to upgrade my 5.3. installation and followed the provided upgrade instructions:
But no matter what I trie, when I do the final “composer update” (“Finish the update”) I get the following messages:
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.
Problem 1
- neos/nodetypes 5.3.1 requires neos/neos 5.3.1 -> satisfiable by neos/neos[5.3.1] but these conflict with your requirements or minimum-stability.
- neos/nodetypes 5.3.1 requires neos/neos 5.3.1 -> satisfiable by neos/neos[5.3.1] but these conflict with your requirements or minimum-stability.
- Installation request for neos/nodetypes ~5.3.1 -> satisfiable by neos/nodetypes[5.3.1].
Before doing any upgrade work the composer.json looks the following:
{
"name": "neos/neos-base-distribution",
"description": "Neos Base Distribution",
"license": "GPL-3.0+",
"support": {
"email": "hello@neos.io",
"slack": "http://slack.neos.io/",
"forum": "https://discuss.neos.io/",
"wiki": "https://discuss.neos.io/c/the-neos-project/project-documentation",
"issues": "https://github.com/neos/neos-development-collection/issues",
"docs": "http://neos.readthedocs.org/",
"source": "https://github.com/neos/neos-base-distribution"
},
"config": {
"vendor-dir": "Packages/Libraries",
"bin-dir": "bin"
},
"require": {
"neos/neos": "~5.3.0",
"neos/site-kickstarter": "~5.3.0",
"neos/neos-ui": "~5.3.0",
"neos/seo": "~3.0",
"neos/redirecthandler-neosadapter": "~4.0",
"neos/redirecthandler-databasestorage": "~4.0",
"neos/redirecthandler-ui": "~2.0",
"neos/setup": "@dev",
"neos/neos-setup": "@dev",
"neos/swiftmailer": "^7.1",
"myown/site": "@dev",
"neos/nodetypes": "~5.3.0"
},
"require-dev": {
"neos/buildessentials": "@dev",
"mikey179/vfsstream": "^1.6",
"phpunit/phpunit": "^8.1",
"symfony/css-selector": "~2.0",
"neos/behat": "@dev"
},
"repositories": {
"distributionPackages": {
"type": "path",
"url": "./DistributionPackages/*"
}
},
"replace": {
"neos/neos-base-distribution": "5.2.1"
},
"suggest": {
"ext-pdo_sqlite": "For running functional tests out-of-the-box this is required"
},
"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"
}
}
Does anyone know what the problem is or has a helpful hint how to find it out?