7
コンポーザーを使用してMagento2を更新する方法
composerを使用してmagento2 ceを更新できないようです。アップデートは見つかりませんでしたが、見つかったのは「fabpot」だけでした。 これが作曲家のセットアップの全体のポイントだと思ったので、ドキュメントで説明されているようにバックエンドを使用したいのはなぜですか:http : //devdocs.magento.com/guides/v2.0/comp-mgr/upgrader/upgrade -start.html それとも何か不足していますか? 助けてくれてありがとう。 編集: ここで説明するように、私は、作曲経由Magento2をインストールするには、公式ドキュメントを追っ:http://devdocs.magento.com/guides/v2.0/install-gde/prereq/integrator_install.html#integrator-first-composer-ce 問題は、次のコマンドを使用してプルされるcomposer.jsonファイル composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition <installation directory name>:.jsonの必須セクションの下にmagentoを定義したことです。 "require": { "magento/product-community-edition": "2.0.0", "composer/composer": "@alpha", "firegento/magesetup2": "dev-develop", "splendid/de_de": "^0.0.1" }, ご覧のとおり、バージョン2.0.0が指定されています。 更新を機能させるには、.jsonファイル内のその行を次のように手動で変更する必要がありました。 "magento/product-community-edition": "2.*", 現在、実行中はcomposer updateすべてのモジュールをバージョン100.0.2から100.0.3に更新しました。 次の理由により、これでもエラー例外がスローされることに注意してください。 [ErrorException] Source /home/dev/git/mysite/vendor/magento/magento2-base/app/design/frontend/Magento does not exist 現在、bin / magentoファイルなど、かなりの数の重要な要素が欠落しているようです。 誰もがそれが正しく行われる方法を知っているので、実際に動作しますか?