Wenn ich composer update in der Console eingebe erhalte ich folgende Fehlermeldung:
> [ ! -f vendor/autoload.php ] || $PHP_BINARY bin/console system:update:prepare
Run Update preparations
Loading composer repositories with package information
Updating dependencies
Nothing to modify in lock file
Installing dependencies from lock file (including require-dev)
Nothing to install, update or remove
Package sensio/framework-extra-bundle is abandoned, you should avoid using it. Use Symfony instead.
Package shopware/recovery is abandoned, you should avoid using it. No replacement was suggested.
Package symfony/inflector is abandoned, you should avoid using it. Use EnglishInflector from the String component instead.
Package true/punycode is abandoned, you should avoid using it. No replacement was suggested.
Generating optimized autoload files
130 packages you are using are looking for funding.
Use the `composer fund` command to find out more!
Installing dependencies from lock file (including require-dev)
Verifying lock file contents can be installed on current platform.
Warning: The lock file is not up to date with the latest changes in composer.json. You may be getting outdated dependencies. It is recommended that you run `composer update` or `composer update <package name>`.
- Required package "shopware/core" is not present in the lock file.
This usually happens when composer files are incorrectly merged or the composer.json file is manually edited.
Read more about correctly resolving merge conflicts https://getcomposer.org/doc/articles/resolving-merge-conflicts.md
and prefer using the "require" command over editing the composer.json file directly https://getcomposer.org/doc/03-cli.md#require-r
Script @composer install --working-dir vendor/shopware/recovery --no-interaction --no-scripts handling the post-update-cmd event returned with error code 4
composer update --lock habe ich schon durchgeführt, behebt den Fehler aber nicht.
Composer version 2.6.3
Hat jemand eine Ahnung, wie man das Problem beheben kann?
composer.json sieht bei mir so aus:
{
"name": "shopware/production",
"type": "project",
"license": "MIT",
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.2.10"
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
},
"prefer-stable": true,
"minimum-stability": "stable",
"scripts": {
"pre-install-cmd": [
"[ ! -f vendor/autoload.php ] || $PHP_BINARY bin/console system:update:prepare"
],
"pre-update-cmd": [
"[ ! -f vendor/autoload.php ] || $PHP_BINARY bin/console system:update:prepare"
],
"post-install-cmd": [
"@composer install --working-dir vendor/shopware/recovery --no-interaction --no-scripts",
"@composer install --working-dir=vendor/shopware/recovery/Common --no-interaction --optimize-autoloader --no-suggest",
"[ ! -f vendor/autoload.php ] || $PHP_BINARY bin/console system:update:finish"
],
"post-update-cmd": [
"@composer install --working-dir vendor/shopware/recovery --no-interaction --no-scripts",
"@composer install --working-dir=vendor/shopware/recovery/Common --no-interaction --optimize-autoloader --no-suggest",
"[ ! -f vendor/autoload.php ] || $PHP_BINARY bin/console system:update:finish"
]
},
"autoload": {
"psr-4": {
"Shopware\\Production\\": "src/"
}
},
"repositories": [
{
"type": "path",
"url": "custom/plugins/*/packages/*",
"options": {
"symlink": true
}
},
{
"type": "path",
"url": "custom/static-plugins/*",
"options": {
"symlink": true
}
}
],
"require": {
"php": "^7.4.3 || ^8.2",
"composer-runtime-api": "^2.0",
"shopware/administration": "~v6.4.20.2",
"shopware/core": "~v6.4.20.2",
"shopware/elasticsearch": "~v6.4.20.2",
"shopware/recovery": "~v6.4.20.2",
"shopware/storefront": "~v6.4.20.2"
},
"require-dev": {
"ext-openssl": "*",
"ext-tokenizer": "*",
"ext-xmlwriter": "*",
"defuse/php-encryption": "~2.2.1",
"dms/phpunit-arraysubset-asserts": "^0.2.1",
"fakerphp/faker": "~1.14.1",
"johnkary/phpunit-speedtrap": "~3.3.0",
"league/flysystem-memory": "~1.0.2",
"maltyxx/images-generator": "~1.0.0",
"mbezhanov/faker-provider-collection": "~2.0.1",
"nikic/php-parser": "~4.13.2",
"opis/json-schema": "~1.0.19",
"phpunit/php-code-coverage": "~9.2.14",
"phpunit/phpunit": "~9.5.17",
"smalot/pdfparser": "~0.14.0",
"symfony/browser-kit": "~4.4 || ~5.2.3 || ~5.3.0 || ~5.4.0",
"symfony/dependency-injection": "~4.4 || ~5.2.3 || ~5.3.0 || ~5.4.0",
"symfony/css-selector": "^5.3",
"symfony/dom-crawler": "~4.4 || ~5.2.3 || ~5.3.0 || ~5.4.0",
"symfony/phpunit-bridge": "~4.4 || ~5.2.3 || ~5.3.0 || ~5.4.0",
"symfony/stopwatch": "~4.4 || ~5.2.3 || ~5.3.0 || ~5.4.0",
"symfony/var-dumper": "~4.4 || ~5.2.3 || ~5.3.0 || ~5.4.0",
"symfony/web-profiler-bundle": "~4.4 || ~5.2.3 || ~5.3.0 || ~5.4.0"
}
}