Hello Aske and Hello Karsten,
I just do what you advised me and now everything is perfect. I thank you once again …
for those who have the same problem as me, here’s a composer.json amended to update from Neos beta 5 to Neos 2.0. Note that I’ve worked on my file that I saved with my method … backup Neos on server linux
after “php composer.phar update” and “./flow doctrine: migrate” and then “./flow node: repair” …
I found my site and everything works perfectly.
here is my composer.json to do the update :
{
“name”: “typo3/neos-base-distribution”,
“description” : “TYPO3 Neos Base Distribution”,
“license”: “GPL-3.0+”,
“support”: {
“email”: "hello@neos.io",
“slack”: “http://slack.neos.io/”,
“irc”: “irc://irc.freenode.org/typo3-neos”,
“forum”: “https://discuss.neos.io/”,
“issues”: “https://jira.neos.io/”,
“source”: “https://git.typo3.org/”
},
“config”: {
“vendor-dir”: “Packages/Libraries”,
“bin-dir”: “bin”
},
“require”: {
“typo3/neos”: “2.0.",
“typo3/neos-nodetypes”: "2.0.”,
“typo3/neosdemotypo3org”: “2.0.",
“typo3/neos-kickstarter”: "2.0.”,
"doctrine/migrations": "@dev",
"typo3/neos-seo": "~1.0",
"typo3/imagine": "~2.0",
"typo3/twitter-bootstrap": "~2.0",
"typo3/form": "~2.0",
"typo3/setup": "~2.0"
},
"require-dev": {
"typo3/buildessentials": "3.0.*@rc",
"mikey179/vfsstream": "1.5.*",
"phpunit/phpunit": "4.6.*",
"flowpack/behat": "dev-master"
},
"suggest": {
"ext-pdo_sqlite": "For running functional tests out-of-the-box this is required"
},
"scripts": {
"post-update-cmd": "TYPO3\\Flow\\Composer\\InstallerScripts::postUpdateAndInstall",
"post-install-cmd": "TYPO3\\Flow\\Composer\\InstallerScripts::postUpdateAndInstall",
"post-package-update":"TYPO3\\Flow\\Composer\\InstallerScripts::postPackageUpdateAndInstall",
"post-package-install":"TYPO3\\Flow\\Composer\\InstallerScripts::postPackageUpdateAndInstall"
}
}