- 🇮🇳India Manoj Raj.R Chennai
Do we have solution for it. How to install the module via composer!
- 🇬🇷Greece TheodorosPloumis Greece
We solved a similar issue for an existing project (we had the issue due to updates) like this:
1) We require a fixed version of the drupal/opigno_lms package (eg "3.0.9")
2) We removed all the first level dependencies on our composer.json that already exist on the opigno_lms composer.json
3) We edited our composer.json so the version of "mozilla/pdf.js": "v2.4.456" can be found correctly on our composer.{ "type": "package", "package": { "name": "mozilla/pdf.js", "version": "v2.4.456", "type": "drupal-library", "dist": { "url": "https://github.com/mozilla/pdf.js/releases/download/v2.4.456/pdfjs-2.4.456-es5-dist.zip", "type": "zip" } } },