Updated as I found the solution in a thread for something else. I hope this helps someone else.
https://discourse.hkvstore.com/t/class-di-containerbuilder-not-found/3150/1 may try:
- Delete composer.lock and “vendor” folder in the project folder,
- Generate all files (including composer.json) again,
- Open a command prompt or PowerShell at the project folder,
- Enter “composer -V” to test your composer installation, make sure there is no error message.
- Enter “composer update” to update. Then you should see a “vender” folder in the project file. In the “vendor” folder you should see many subfolders and an autoload.php.
- In the project folder, you should find a “src” folder, in which you should find the HttpErrorHandler.php.
If the autoload.php is generated by composer correctly, your app should find the class HttpErrorHandler.