From 2512962fb1aa818e29e653126f941c40162f3c2b Mon Sep 17 00:00:00 2001 From: kenjis Date: Thu, 12 Jan 2023 11:33:05 +0900 Subject: [PATCH 1/2] docs: add about "Call to undefined method ComposerInstalledVersions::getAllRawData()" --- .../source/installation/upgrade_430.rst | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/user_guide_src/source/installation/upgrade_430.rst b/user_guide_src/source/installation/upgrade_430.rst index 36312248c931..c291f8f417cd 100644 --- a/user_guide_src/source/installation/upgrade_430.rst +++ b/user_guide_src/source/installation/upgrade_430.rst @@ -12,6 +12,23 @@ Please refer to the upgrade instructions corresponding to your installation meth :local: :depth: 2 +Trouble Shooting +**************** + +Call to undefined method Composer\InstalledVersions::getAllRawData() +==================================================================== + +Some users reported "*Fatal error: Uncaught Error: Call to undefined method Composer\InstalledVersions::getAllRawData()*" after upgrading with Composer. + +If you get the error, upgrade your ``composer`` command, and delete the **vendor/** +directory, and run ``composer update`` again. + +The procedure, for example, is as follows:: + + > composer self-update + > rm -rf vendor/ + > composer update + Mandatory File Changes ********************** From 8115516f1afeca1ca847f2d4f761dbcc6f6f20b6 Mon Sep 17 00:00:00 2001 From: kenjis Date: Thu, 12 Jan 2023 12:52:09 +0900 Subject: [PATCH 2/2] docs: fix by proofreading Co-authored-by: John Paul E. Balandan, CPA --- user_guide_src/source/installation/upgrade_430.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_guide_src/source/installation/upgrade_430.rst b/user_guide_src/source/installation/upgrade_430.rst index c291f8f417cd..50f4cc84edd0 100644 --- a/user_guide_src/source/installation/upgrade_430.rst +++ b/user_guide_src/source/installation/upgrade_430.rst @@ -20,7 +20,7 @@ Call to undefined method Composer\InstalledVersions::getAllRawData() Some users reported "*Fatal error: Uncaught Error: Call to undefined method Composer\InstalledVersions::getAllRawData()*" after upgrading with Composer. -If you get the error, upgrade your ``composer`` command, and delete the **vendor/** +If you get the error, upgrade your ``composer`` tool, and delete the **vendor/** directory, and run ``composer update`` again. The procedure, for example, is as follows::